Created
June 5, 2012 07:06
-
-
Save ashwoods/2873254 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
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