Use SSD as default Disk drive type. Fixes booting up the VM on OSX

This commit is contained in:
Mark Korondi 2017-05-06 17:38:31 -04:00
parent ddba86d73d
commit b8d357819d
2 changed files with 8 additions and 1 deletions

View File

@ -24,7 +24,7 @@ Instructions
[VirtualBox]: https://www.virtualbox.org/wiki/Downloads
[VMware player]: http://www.vmware.com/products/player/playerpro-evaluation.html
[image]: https://github.com/kmARC/openstack-training-virtual-environment/releases/download/v2017.01.1/upstream-training-v2017.01.1.ova
[image]: https://github.com/kmARC/openstack-training-virtual-environment/releases/download/next/upstream-training-alpha.ova
[releases]: https://github.com/kmARC/openstack-training-virtual-environment/releases
[ova-import-help]: README-virtualbox-import.md

7
Vagrantfile vendored
View File

@ -12,6 +12,13 @@ Vagrant.configure(2) do |config|
vb.customize ["modifyvm", :id, "--natnet1", "192.168.10/24"]
# Xenial COM1 port logging
vb.customize ["modifyvm", :id, "--uartmode1", "disconnected"]
# Set disks as SSD (fixes OSX Virtualbox Ubuntu boot problems)
vb.customize ["storageattach", :id, "--storagectl", "SCSI",
"--port", "0",
"--nonrotational", "on"]
vb.customize ["storageattach", :id, "--storagectl", "SCSI",
"--port", "1",
"--nonrotational", "on"]
end
config.vm.provision :shell, inline: "/vagrant/install-base.sh",
privileged: false, keep_color: true