Vagrantfile: Disable default rsync on /vagrant

This commit is contained in:
Alexander Neumann 2015-08-16 22:27:16 +02:00
parent 3ac04257a4
commit 4f8cc1180d
1 changed files with 1 additions and 0 deletions

1
Vagrantfile vendored
View File

@ -85,6 +85,7 @@ end
Vagrant.configure(2) do |config|
# use rsync to copy content to the folder
config.vm.synced_folder ".", "/vagrant/go/src/github.com/restic/restic", :type => "rsync"
config.vm.synced_folder ".", "/vagrant", disabled: true
# fix permissions on synced folder
config.vm.provision "fix perms", :type => :shell, :inline => fix_perms