From 68fa2a2545dbb52c3df44290562b5a9773aad8f6 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Tue, 9 Apr 2019 10:06:04 -0500 Subject: [PATCH] Vagrantfile: Use default rsync args We want this to act as a mirror within the VM (i.e. delete files, too), and the default args do that. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 337a14cc..e735ca8a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -14,7 +14,7 @@ Vagrant.configure(2) do |config| #set up shared and rsynced folders config.vm.synced_folder "./vagrant_share/", "/vagrant/", id: "share", create: true - config.vm.synced_folder ".", "/home/vagrant/proton", id: "proton", type: "rsync", rsync__exclude: ["/output/", "vagrant_share"], rsync__args: ["--verbose", "--archive", "-z", "--links", "--update"] + config.vm.synced_folder ".", "/home/vagrant/proton", id: "proton", type: "rsync", rsync__exclude: ["/output/", "vagrant_share"] #this is where the VM is initialized on first setup config.vm.provision "shell", privileged: "true", inline: <<-SHELL