From 57402b120bdc51e8b574010a01aaa6d72abf8c16 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Mon, 17 Oct 2016 17:37:33 +0200 Subject: [PATCH] vagrant: no chown when rsyncing it tries to do chown -R vagrant.vagrant, but some boxes do not have a vagrant group and break there. also, we do our own chown in the provisioning scripts. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index d5e3bb57d..53ea02c3b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -301,7 +301,7 @@ end Vagrant.configure(2) do |config| # use rsync to copy content to the folder - config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync", :rsync__args => ["--verbose", "--archive", "--delete", "-z"] + config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync", :rsync__args => ["--verbose", "--archive", "--delete", "-z"], :rsync__chown => false # do not let the VM access . on the host machine via the default shared folder! config.vm.synced_folder ".", "/vagrant", disabled: true