Skip to content

Commit

Permalink
Changes to make Vagrantfile compatible with vagrant 0.9.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ppapadeas committed Jan 19, 2012
1 parent f62de74 commit de5b7d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vagrantfile
Expand Up @@ -19,7 +19,7 @@ Vagrant::Config.run do |config|
config.vm.box = "lucid32"
config.vm.box_url = "http://files.vagrantup.com/lucid32.box"

config.vm.forward_port("web", 8000, 8000)
config.vm.forward_port 8000, 8000

# Increase vagrant's patience during hang-y CentOS bootup
# see: https://github.com/jedi4ever/veewee/issues/14
Expand All @@ -34,7 +34,7 @@ Vagrant::Config.run do |config|
end

# Add to /etc/hosts: 33.33.33.24 dev.playdoh.org
config.vm.network "33.33.33.24"
config.vm.network :hostonly, "33.33.33.24"

config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
Expand Down

0 comments on commit de5b7d3

Please sign in to comment.