Skip to content

Instantly share code, notes, and snippets.

@mpepping
Created March 12, 2013 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpepping/5142894 to your computer and use it in GitHub Desktop.
Save mpepping/5142894 to your computer and use it in GitHub Desktop.
Vagrantfile /w puppetmaster
# vi: set ft=ruby
Vagrant::Config.run do |config|
# box specs
config.vm.box = "centos63"
config.vm.host_name = "BOXNAME.lab.xbsd.nl"
config.vm.network :hostonly, "192.168.56.BOXIP"
# initial puppet run
Vagrant::Config.run do |config|
config.vm.provision :puppet_server do |puppet|
puppet.puppet_server = "192.168.56.5"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment