Skip to content

Commit 59b6506

Browse files
committed
fix #2 Installation errors
1 parent ec55b26 commit 59b6506

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Vagrantfile

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ Vagrant.configure("2") do |config|
1111
vb.customize ["modifyvm", :id, "--memory", "1024", "--cpus", "2"]
1212
end
1313
config.vm.provision :chef_solo do |chef|
14+
15+
# workaround for changes in Vagrant >= 1.2.4 which cause an exception
16+
# Chef::Exceptions::EnclosingDirectoryDoesNotExist
17+
chef.provisioning_path = "/tmp/vagrant-chef-solo"
18+
chef.file_cache_path = chef.provisioning_path
19+
1420
chef.cookbooks_path = "chef/cookbooks"
1521
chef.roles_path = "chef/roles"
1622
chef.add_role "web"

0 commit comments

Comments
 (0)