Skip to content

Instantly share code, notes, and snippets.

@patcon
Created December 6, 2011 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patcon/1436645 to your computer and use it in GitHub Desktop.
Save patcon/1436645 to your computer and use it in GitHub Desktop.
Vagrantfile stub for Chef cookbook development
Vagrant::Config.run do |config|
config.vm.box = "lucid64"
config.vm.define "toomanyclowns-cooking"
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = [ "cookbooks", "cookbooks-overrides" ]
chef.add_recipe "toomanyclowns"
# chef.json = {
# :mysql_password => "foo"
# }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment