From 3a0d52d9eb07662b3b7fa5943d94f8ccfe7f2777 Mon Sep 17 00:00:00 2001 From: Bogdan Dobrelya Date: Thu, 18 Feb 2016 11:51:41 +0100 Subject: [PATCH] Fix dirs sync rsync type for Vagrantfile Change-Id: I57baec274fa58616f76dd8071a207daa2b9b5ef6 Signed-off-by: Bogdan Dobrelya --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 35e6f9d0..4f06b5c8 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -98,7 +98,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.synced_folder ".", "/vagrant", type: "nfs" end if SYNC_TYPE == 'rsync' - config.vm.synced_folder ".", "/vagrant", rsync: "nfs", + config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__args: ["--verbose", "--archive", "--delete", "-z"] end @@ -169,7 +169,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.synced_folder ".", "/vagrant", type: "nfs" end if SYNC_TYPE == 'rsync' - config.vm.synced_folder ".", "/vagrant", rsync: "nfs", + config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__args: ["--verbose", "--archive", "--delete", "-z"] end end