Created
February 15, 2011 15:18
-
-
Save jedi4ever/827638 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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