Version information
released Mar 16th 2015
This version is compatible with:
- Puppet 3.x
Start using this module
Add this module to your Puppetfile:
mod 'jbussdieker-mcollective', '0.0.3'
Learn more about managing modules with a PuppetfileDocumentation
jbussdieker/mcollective — version 0.0.3 Mar 16th 2015
Mcollective Module
This module manages installing, configuring and running Mcollective.
Usage
Basic installation (defaults to stomp)
class { 'mcollective': }
Using ActiveMQ
class { 'mcollective':
connector => 'activemq',
connector_port => 61613,
connector_user => 'mcollective',
connector_password => 'secret',
}
Using RabbitMQ
class { 'mcollective':
connector => 'rabbitmq',
connector_port => 61613,
connector_user => 'mcollective',
connector_password => 'secret',
}