Commit 7f0ecb84 authored by Bearnard Hibbins's avatar Bearnard Hibbins

Prevent Virtualbox Guest Additions from being updated, gcc is not installed on the image.

parent c3ce410c
......@@ -163,6 +163,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
}).strip
end
# Don't attempt to update Virtualbox Guest Additions (requires gcc)
if Vagrant.has_plugin?("vagrant-vbguest") then
config.vbguest.auto_update = false
end
# Finally, fall back to VirtualBox
config.vm.provider :virtualbox do |v, override|
setvmboxandurl(override, :virtualbox)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment