You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Vagrantfile 634B

12345678910111213141516171819202122
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3. #
  4. # Before bringing up your Vagrant machine, run:
  5. #
  6. # make puppet
  7. #
  8. # to fetch the puppet modules required to build the VM.
  9. Vagrant::Config.run do |config|
  10. config.vm.box = "precise64"
  11. config.vm.box_url = "http://files.vagrantup.com/precise64.box"
  12. config.vm.forward_port 8000, 8080
  13. config.vm.forward_port 80, 8081
  14. #config.vm.boot_mode = :gui
  15. config.vm.provision :puppet do |puppet|
  16. puppet.manifests_path = "sites/puppet/manifests"
  17. puppet.manifest_file = "site.pp"
  18. puppet.module_path = "sites/puppet/modules"
  19. #puppet.options = "--debug"
  20. end
  21. end