我想禁用VirtualBox Guest Additions。我没有将它们用于文件夹同步等,而对于我正在处理的盒子(例如,centos / 7),它们无论如何都无法构建。有没有办法告诉流浪者不要尝试在vagrant up
安装它们?
答案 0 :(得分:16)
在您的Vagrantfile中,添加以下参数
Vagrant.configure("2") do |config|
....
config.vbguest.auto_update = false
....
end
答案 1 :(得分:4)
Vagrant.configure("2") do |config|
....
if Vagrant.has_plugin?("vagrant-vbguest")
config.vbguest.auto_update = false
end
....
end