From e9bc7353e6fa9698a81bd3ec91289c887615685c Mon Sep 17 00:00:00 2001 From: David Manouchehri Date: Mon, 4 Dec 2017 13:54:10 -0500 Subject: [PATCH] As requested by @justincormack (https://github.com/linuxkit/linuxkit/pull/2784#issuecomment-349064467). Signed-off-by: David Manouchehri --- Vagrantfile => scripts/Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) rename Vagrantfile => scripts/Vagrantfile (89%) diff --git a/Vagrantfile b/scripts/Vagrantfile similarity index 89% rename from Vagrantfile rename to scripts/Vagrantfile index 5fb063e25..44338480f 100644 --- a/Vagrantfile +++ b/scripts/Vagrantfile @@ -5,6 +5,9 @@ Vagrant.configure("2") do |config| config.vm.box = "bento/ubuntu-16.04" + config.vm.synced_folder ".", "/vagrant", disabled: true + config.vm.synced_folder "../", "/vagrant" + config.vm.provision "shell", inline: <<-SHELL snap install --classic go SHELL