Skip to content

Instantly share code, notes, and snippets.

@jedi4ever
Created February 15, 2011 15:18
Show Gist options
  • Save jedi4ever/827638 to your computer and use it in GitHub Desktop.
Save jedi4ever/827638 to your computer and use it in GitHub Desktop.
## VagrantFile
config.vm.provision :puppet do |puppet|
puppet.pp_path = "/tmp/vagrant-puppet"
puppet.manifests_path = "manifests"
puppet.module_path = "modules"
puppet.manifest_file = "newbox.pp"
end
## modules/newbox.pp (what the box needs)
include pxe-server
include apt-cacher
include active-mq
include mcollective::server
include mcollective::client
#modules (contains your modules)
active-mq apt-cacher mcollective
after the change you need to do vagrant reload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment