Skip to content

Instantly share code, notes, and snippets.

@pblittle
Created April 21, 2010 14:13
Show Gist options
  • Select an option

  • Save pblittle/373854 to your computer and use it in GitHub Desktop.

Select an option

Save pblittle/373854 to your computer and use it in GitHub Desktop.
Vagrant::Config.run do |config|
config.vm.box = "karmic"
config.vm.provisioner = :chef_solo
config.chef.cookbooks_path = [
"cookbooks",
"~/code/hugo-cookbooks/site-cookbooks"
]
config.chef.add_recipe("gems")
config.chef.json.merge!({
:gem_list => [
{ :name => 'haml' },
{ :name => 'sinatra' }
]
})
puts config.chef.json.to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment