From 3165af5c09cbd46d0280cabcae5b4b4b3a692c92 Mon Sep 17 00:00:00 2001 From: parazyd Date: Wed, 15 Feb 2017 13:48:52 +0100 Subject: [PATCH] disable sync in vagrantfile --- zlibs/vm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zlibs/vm b/zlibs/vm index 4a12171..22bbd78 100644 --- a/zlibs/vm +++ b/zlibs/vm @@ -136,6 +136,8 @@ Vagrant.configure("2") do |config| config.ssh.username = "root" config.ssh.password = "toor" config.vm.guest = :debian + config.vm.synced_folder ".", "/vagrant", disabled: true + # https://github.com/dotless-de/vagrant-vbguest end EOF act "creating metadata.json"