summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Vagrantfile6
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"