Skip to content

Instantly share code, notes, and snippets.

@matschaffer
Created January 4, 2013 03:50
Show Gist options
  • Save matschaffer/4449752 to your computer and use it in GitHub Desktop.
Save matschaffer/4449752 to your computer and use it in GitHub Desktop.
Vagrant::Config.run do |config|
config.vm.provision :chef_solo do |chef|
chef.add_recipe("apache")
chef.add_recipe("php")
chef.arguments = "-l debug"
end
end
@btoone
Copy link

btoone commented Feb 8, 2013

That's great, I didn't realize you could pass in arguments like that. I usually use

chef.log_level = :debug

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment