From e94f1a04b59d4c62b5ac0829066d4c3f34e7fd7c Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Mon, 5 Oct 2020 00:55:40 +0200 Subject: [PATCH] Update README and Vagrantfile --- README.md | 4 ++++ Vagrantfile | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7cbf427..5cffdd2 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,10 @@ For local testing, it is recommended to use [Vagrant](https://www.vagrantup.com/ After installing vagrant, run: ```bash +# once, to install the plugin to automatically build the guest iso +# at the time of writing version 0.25.0 is broken. +vagrant plugin install --plugin-version 0.24.0 vagrant-vbguest + # start the vargant box vagrant up diff --git a/Vagrantfile b/Vagrantfile index 40f835a..5460d18 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -20,9 +20,6 @@ Vagrant.configure("2") do |config| vb.cpus = 2 end - # reboot the vm after vbguest installation - config.vbguest.auto_reboot=true - # tell the user where things are. config.vm.post_up_message = "Ready to distil and make WissKIs. Scripts can be found in /distillery/. " end