update to Ubuntu 18.04 (Bionic)

This commit is contained in:
Bryan Black 2018-04-19 11:53:57 -07:00 committed by GitHub
parent ad6047ec76
commit d6beed1fcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,13 +20,13 @@ Vagrant.configure("2") do |config|
end
config.vm.define "ubuntu3" do |ubuntu3|
ubuntu3.vm.box = "ubuntu/xenial64"
ubuntu3.vm.box = "ubuntu/bionic64"
ubuntu3.vm.hostname = "ubuntu3"
ubuntu3.vm.network "private_network", ip: "192.168.33.130"
end
config.vm.define "ubuntu4" do |ubuntu4|
ubuntu4.vm.box = "ubuntu/xenial64"
ubuntu4.vm.box = "ubuntu/bionic64"
ubuntu4.vm.hostname = "ubuntu4"
ubuntu4.vm.network "private_network", ip: "192.168.33.140"
end