Vagrantfile: add chef debugging option

This commit is contained in:
Jörg Thalheim 2014-02-08 16:04:47 +01:00
parent 66307918c2
commit 900a2e9103
1 changed files with 2 additions and 1 deletions

3
Vagrantfile vendored
View File

@ -73,6 +73,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
shell.args = "11.8.2"
end
node.vm.provision :chef_solo do |chef|
# Verbose logging
#chef.arguments = '-l debug'
chef.cookbooks_path = "cookbooks"
chef.data_bags_path = "data_bags"
chef.roles_path = "roles"
@ -91,5 +93,4 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end
end
end
end