Modify Vagrant box to bento/ubuntu-16.04

Modify Vagrant box from ubuntu/xenial64 to bento/ubuntu-16.04.
This resolves the issue with the read only file system due to
the scsi driver issue in the ubuntu/xenial64 Vagrant box. See
the review at, https://review.openstack.org/#/c/366024, for
more details and discussion.

bento/ubuntu-16.04 uses the SATA driver and the prior issues
that we had run into with the bento box not working either
have been resolved. Note, we had tested bento/ubuntu-16.04
earlier and it did not work, but whatever issue that we had
been running into has now been resolved.

Change-Id: Ia754dc83fe65f391bee1e5e51851334a856309e8
This commit is contained in:
Roland Hochmuth 2016-12-15 19:44:27 -07:00
parent 45427340b3
commit afeac3a3e8
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ Vagrant.configure(2) do |config|
end
config.vm.hostname = "devstack"
config.vm.box = "ubuntu/xenial64"
config.vm.box = "bento/ubuntu-16.04"
# config.vm.box_check_update = false
config.vm.network "private_network",ip:"192.168.10.6"
config.vm.synced_folder "~/", "/vagrant_home"