Skip to content

Instantly share code, notes, and snippets.

@ashwoods
Created June 5, 2012 07:06
Show Gist options
  • Save ashwoods/2873254 to your computer and use it in GitHub Desktop.
Save ashwoods/2873254 to your computer and use it in GitHub Desktop.
Vagrant::Config.run do |config|
config.vm.box = "bribespot-oneiric-v1"
config.vm.box_url = "http://dl.dropbox.com/u/1419385/vagrant/bribespot-oneiric-v1.box"
config.vm.host_name = 'vagrant'
config.vm.network :hostonly, "33.33.33.10"
config.vm.forward_port 8000, 8000 #dev server
config.vm.forward_port 6379, 6379 #redis
config.vm.forward_port 80, 8080 #nginx
config.vm.forward_port 5432, 15432 #postgres
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet"
puppet.module_path = ["puppet",]
puppet.manifest_file = "nodes.pp"
puppet.options = " --debug"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment