Skip to content

Commit

Permalink
Prevent Virtualbox Guest Additions from being updated, gcc is not ins…
Browse files Browse the repository at this point in the history
…talled on the image.
  • Loading branch information
bearnard committed Apr 25, 2015
1 parent c3ce410 commit 7f0ecb8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7f0ecb8

Please sign in to comment.