From f36c201769200d4300c4f413ce50632081d34d77 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 26 Jun 2018 17:12:32 -0700 Subject: [PATCH] Set all VMs to not auto-update the tools. The current version of the plugin is behaving weirdly. (cherry picked from commit 2e74c462df9d90cb440b3d42b6c78682b78cedf3) --- vagrant/centos-7/Vagrantfile | 4 ++++ vagrant/debian-8/Vagrantfile | 4 ++++ vagrant/debian-9/Vagrantfile | 4 ++++ vagrant/fedora-26/Vagrantfile | 4 ++++ vagrant/fedora-27/Vagrantfile | 4 ++++ vagrant/ubuntu-14.04/Vagrantfile | 4 ++++ vagrant/ubuntu-16.04/Vagrantfile | 4 ++++ vagrant/ubuntu-18.04/Vagrantfile | 4 ++++ 8 files changed, 32 insertions(+) diff --git a/vagrant/centos-7/Vagrantfile b/vagrant/centos-7/Vagrantfile index 7ee5cc5f..a0f37f10 100644 --- a/vagrant/centos-7/Vagrantfile +++ b/vagrant/centos-7/Vagrantfile @@ -21,4 +21,8 @@ Vagrant.configure("2") do |config| # And share a folder with the build script config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + # set auto_update to false, if you do NOT want to check the correct + # additions version when booting this machine + config.vbguest.auto_update = false + end diff --git a/vagrant/debian-8/Vagrantfile b/vagrant/debian-8/Vagrantfile index 5ab9497f..9f7bba57 100644 --- a/vagrant/debian-8/Vagrantfile +++ b/vagrant/debian-8/Vagrantfile @@ -21,4 +21,8 @@ Vagrant.configure("2") do |config| # And share a folder with the build script config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + # set auto_update to false, if you do NOT want to check the correct + # additions version when booting this machine + config.vbguest.auto_update = false + end diff --git a/vagrant/debian-9/Vagrantfile b/vagrant/debian-9/Vagrantfile index 7ac9eb55..9f4fa01e 100644 --- a/vagrant/debian-9/Vagrantfile +++ b/vagrant/debian-9/Vagrantfile @@ -21,4 +21,8 @@ Vagrant.configure("2") do |config| # And share a folder with the build script config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + # set auto_update to false, if you do NOT want to check the correct + # additions version when booting this machine + config.vbguest.auto_update = false + end diff --git a/vagrant/fedora-26/Vagrantfile b/vagrant/fedora-26/Vagrantfile index a7062636..8c88abba 100644 --- a/vagrant/fedora-26/Vagrantfile +++ b/vagrant/fedora-26/Vagrantfile @@ -21,4 +21,8 @@ Vagrant.configure("2") do |config| # And share a folder with the build script config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + # set auto_update to false, if you do NOT want to check the correct + # additions version when booting this machine + config.vbguest.auto_update = false + end diff --git a/vagrant/fedora-27/Vagrantfile b/vagrant/fedora-27/Vagrantfile index b36fce0e..de32e1da 100644 --- a/vagrant/fedora-27/Vagrantfile +++ b/vagrant/fedora-27/Vagrantfile @@ -21,4 +21,8 @@ Vagrant.configure("2") do |config| # And share a folder with the build script config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + # set auto_update to false, if you do NOT want to check the correct + # additions version when booting this machine + config.vbguest.auto_update = false + end diff --git a/vagrant/ubuntu-14.04/Vagrantfile b/vagrant/ubuntu-14.04/Vagrantfile index ede95868..b3c9229a 100644 --- a/vagrant/ubuntu-14.04/Vagrantfile +++ b/vagrant/ubuntu-14.04/Vagrantfile @@ -21,4 +21,8 @@ Vagrant.configure("2") do |config| # And share a folder with the build script config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + # set auto_update to false, if you do NOT want to check the correct + # additions version when booting this machine + config.vbguest.auto_update = false + end diff --git a/vagrant/ubuntu-16.04/Vagrantfile b/vagrant/ubuntu-16.04/Vagrantfile index 4b34befd..34e48293 100644 --- a/vagrant/ubuntu-16.04/Vagrantfile +++ b/vagrant/ubuntu-16.04/Vagrantfile @@ -21,4 +21,8 @@ Vagrant.configure("2") do |config| # And share a folder with the build script config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + # set auto_update to false, if you do NOT want to check the correct + # additions version when booting this machine + config.vbguest.auto_update = false + end diff --git a/vagrant/ubuntu-18.04/Vagrantfile b/vagrant/ubuntu-18.04/Vagrantfile index b4ebb7a1..0c23062f 100644 --- a/vagrant/ubuntu-18.04/Vagrantfile +++ b/vagrant/ubuntu-18.04/Vagrantfile @@ -21,4 +21,8 @@ Vagrant.configure("2") do |config| # And share a folder with the build script config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + # set auto_update to false, if you do NOT want to check the correct + # additions version when booting this machine + config.vbguest.auto_update = false + end