Created
January 4, 2013 03:50
-
-
Save matschaffer/4449752 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's great, I didn't realize you could pass in arguments like that. I usually use