1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-24 08:46:24 -07:00

make VirtualBox the default vagrant provider

You can still use libvirt by running GC_PROVIDER=libvirt vagrant up
This commit is contained in:
Eggbertx 2020-10-01 17:32:17 -07:00
parent e3acd4a6d0
commit 562b4cb6be

2
vagrant/Vagrantfile vendored
View file

@ -7,7 +7,7 @@ if DBTYPE != "mysql" && DBTYPE != "postgresql"
abort
end
PROVIDER = ENV.fetch("GC_PROVIDER", "libvirt") # because VirtualBox is crashing the host in Linux
PROVIDER = ENV.fetch("GC_PROVIDER", "virtualbox") # can be virtualbox or libvirt
BOX = "generic/ubuntu1604"
if PROVIDER == "virtualbox"
BOX = "ubuntu/xenial64"