Skip to main content
summaryrefslogtreecommitdiffstats
blob: dc89cb2259f1da421f2586f87f87b7960e17f440 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
Vagrant::Config.run do |config|
  config.vm.box = "lucid32"
  config.vm.box_url = "http://files.vagrantup.com/lucid32.box"
#  config.vm.box = "precise32"
#  config.vm.box_url = "http://files.vagrantup.com/precise32.box"

  config.vm.forward_port 80, 2080
  config.vm.forward_port 443, 2443

  config.vm.provision :puppet, :module_path => "modules"
#  , :options => "--verbose --debug"
end

Back to the top