Merge pull request #289 from mikexstudios/vagrantfix

Set Ubuntu Raring cloud box `--ostype=Ubuntu_64` to fix virtualbox boot
This commit is contained in:
rhy-jot
2013-11-11 11:36:20 -08:00

3
Vagrantfile vendored
View File

@@ -22,6 +22,9 @@ Vagrant::configure("2") do |config|
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
# Ubuntu's Raring 64-bit cloud image is set to a 32-bit Ubuntu OS type by
# default in Virtualbox and thus will not boot. Manually override that.
vb.customize ["modifyvm", :id, "--ostype", "Ubuntu_64"]
end
config.vm.provision :shell, :inline => "apt-get -y install git && cd /root/dokku && #{make_cmd}"