mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-24 20:24:09 +00:00
Prevent Virtualbox Guest Additions from being updated, gcc is not installed on the image.
This commit is contained in:
parent
c3ce410cb0
commit
7f0ecb84a7
4
Vagrantfile
vendored
4
Vagrantfile
vendored
@ -163,6 +163,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|||||||
}).strip
|
}).strip
|
||||||
end
|
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
|
# Finally, fall back to VirtualBox
|
||||||
config.vm.provider :virtualbox do |v, override|
|
config.vm.provider :virtualbox do |v, override|
|
||||||
setvmboxandurl(override, :virtualbox)
|
setvmboxandurl(override, :virtualbox)
|
||||||
|
Loading…
Reference in New Issue
Block a user