Skip to content

Instantly share code, notes, and snippets.

@ni-ka
Created March 5, 2012 13:21
Show Gist options
  • Save ni-ka/1978283 to your computer and use it in GitHub Desktop.
Save ni-ka/1978283 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "lucid64"
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = ["chef-repo/cookbooks","chef-repo/cookbooks-edelight"]
chef.roles_path = "chef-repo/roles"
chef.add_recipe "apt"
chef.add_recipe "rvm::system"
chef.add_recipe "rvm::vagrant"
# chef.add_recipe "mongodb::default"
# chef.json.merge!({
# 'rvm' => {
# :rubies => ["ree-1.8.7-2011.03"],
# }
# })
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment