From acbf4cb412d71fc5a8f94df081430359e38f1da5 Mon Sep 17 00:00:00 2001 From: Shawn Holmes Date: Fri, 5 Apr 2013 08:42:05 -0600 Subject: [PATCH] Sync folder now specifies id Vagrant 1.1.5 seems to think we are overriding a previous shared folder in our script. Passing the id solves this. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index a2d58abc40..13001164f0 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -28,7 +28,7 @@ Vagrant.configure("2") do |config| config.vm.network :forwarded_port, guest: 1080, host: 4080 # Mailcatcher nfs_setting = RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/ - config.vm.synced_folder ".", "/vagrant", :nfs => nfs_setting + config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", :nfs => nfs_setting chef_cookbooks_path = ["chef/cookbooks"]