diff --git a/Vagrantfile b/Vagrantfile index 2300628..80d232a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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