From 7f0ecb84a729716ba9d3ee22120627a4811f21e7 Mon Sep 17 00:00:00 2001 From: Bearnard Hibbins Date: Sat, 25 Apr 2015 06:33:40 +0200 Subject: [PATCH] Prevent Virtualbox Guest Additions from being updated, gcc is not installed on the image. --- Vagrantfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 660a7bf8dc4..1afa991b318 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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)