Skip to content

Instantly share code, notes, and snippets.

@clintberry
Created March 30, 2012 20:54

Revisions

  1. clintberry renamed this gist Mar 30, 2012. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. clintberry created this gist Mar 30, 2012.
    21 changes: 21 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    config.vm.provision :chef_solo do |chef|
    chef.json = {
    :mysql => {
    :server_root_password => 'blahblah'
    },
    :nodejs => {
    :version => '0.6.14',
    :dir => '/usr/local',
    :npm => '1.1.13'
    }
    }
    chef.cookbooks_path = "config/env/cookbooks"
    chef.add_recipe "apt"
    chef.add_recipe "mongodb::10gen_repo"
    chef.add_recipe "mongodb"
    chef.add_recipe "mysql::client"
    chef.add_recipe "mysql::server"
    chef.add_recipe "nodejs"
    chef.add_recipe "nodejs::npm"

    end