Created
March 5, 2012 13:21
-
-
Save ni-ka/1978283 to your computer and use it in GitHub Desktop.
This file contains 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
# -*- 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