Merge "Disable vagrant-vbguest plugin if it is installed"

This commit is contained in:
Jenkins
2014-12-12 19:21:19 +00:00
committed by Gerrit Code Review

4
Vagrantfile vendored
View File

@@ -49,6 +49,10 @@ Vagrant.configure(2) do |config|
config.cache.scope = :machine
end
if Vagrant.has_plugin?("vagrant-vbguest")
config.vbguest.auto_update = false
end
CONFIG['address']['compute'].each_with_index do |address, index|
name = "compute#{index + 1}"
config.vm.define name do |node|