diff options
author | AlabĂȘ Duarte <aduarte@thoughtworks.com> | 2015-02-09 21:11:14 -0300 |
---|---|---|
committer | Neissi Torres Lima <neissi.lima@gmail.com> | 2015-03-23 18:39:55 -0300 |
commit | 7a4c5c0c99d5b4f3f14c029d0da600f6a6bd83ad (patch) | |
tree | 0d929b83255e0a40c01a50102c152652d0d903b1 | |
parent | a31b285e278de1bb6d2b684509d680006a09f598 (diff) |
Adds vbguest plugin configuration in order to avoid automatic updates.
-rw-r--r-- | Vagrantfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile index db4cd0e2..7ded6b89 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -18,6 +18,12 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "leap-wheezy" + unless Vagrant.has_plugin?("vagrant-vbguest") + raise 'plugin vagrant-vbguest is not installed! Please run `vagrant plugin install vagrant-vbguest`' + end + + config.vbguest.auto_update = false + config.vm.define "source", primary: true do |source| source.vm.provider :virtualbox do |v, override| override.vm.box_url = "https://downloads.leap.se/platform/vagrant/virtualbox/leap-wheezy.box" |