Skip to content

Instantly share code, notes, and snippets.

@dlchet
dlchet / gist:574331
Created September 10, 2010 20:41 — forked from bixu/gist:573973
Vagrant::Config.run do |config|
# Choose our base box:
config.vm.box = "centos"
# Talk to our central Chef server:
config.chef.run_list.clear
config.chef.chef_server_url = "https://chef.domain.com"
config.chef.validation_key_path = "validation.pem"
config.vm.provisioner = :chef_server
config.chef.add_role("vagrant-unstable")
class App < ActiveRecord::Base
end