Change Vagrantfile to use a currently-existing Ubuntu Linux image (#336)

This commit is contained in:
Andy Fingerhut 2020-03-12 18:54:15 -07:00 committed by GitHub
parent d9fdc0f446
commit 05174e8a95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
vm/Vagrantfile vendored
View File

@ -2,7 +2,7 @@
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "lasp/ubuntu16.04-desktop"
config.vm.box = "bento/ubuntu-16.04"
config.vm.define "p4-tutorial" do |tutorial|
end
config.vm.provider "virtualbox" do |vb|