From 777fc89d3f8eb0cd3a4a8f0b44e1938883ee71b2 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 24 Jan 2016 14:49:07 +0100 Subject: [PATCH] Vagrantfile: rsync symlinks as symlinks, fixes #592 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index eac1ff0a7..284298543 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -273,7 +273,7 @@ end Vagrant.configure(2) do |config| # use rsync to copy content to the folder - config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync" + config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync", :rsync__args => ["--verbose", "--archive", "--delete", "-z"] # do not let the VM access . on the host machine via the default shared folder! config.vm.synced_folder ".", "/vagrant", disabled: true