Skip to content

Commit

Permalink
Merge pull request mozilla#93 from ppapadeas/patch-1
Browse files Browse the repository at this point in the history
Changes to make Vagrantfile compatible with vagrant 0.9.x
  • Loading branch information
davedash committed Jan 26, 2012
2 parents 769f37c + de5b7d3 commit 92a5e5c
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 92a5e5c

Please sign in to comment.