Skip to content

Instantly share code, notes, and snippets.

@KrisBuytaert
Created February 14, 2012 07:32
Show Gist options
  • Save KrisBuytaert/1824515 to your computer and use it in GitHub Desktop.
Save KrisBuytaert/1824515 to your computer and use it in GitHub Desktop.
Vagrant::Config.run do |config|
config.vm.box = "Centos6"
config.vm.host_name = "puppetmaster"
config.vm.network "10.16.16.2"
config.vm.forward_port "http", 80, 50050
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.manifest_file = "site.pp"
puppet.module_path = "puppet/modules"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment