Puppet Class: mcollective::client
- Defined in:
- manifests/client.pp
Overview
private class Installs the client and sets up /etc/mcollective/client.cfg (global/common configuration)
4 5 6 7 8 9 10 11 12 13 |
# File 'manifests/client.pp', line 4
class mcollective::client {
if $caller_module_name != $module_name {
fail("Use of private class ${name} by ${caller_module_name}")
}
anchor { 'mcollective::client::begin': } ->
class { '::mcollective::client::install': } ->
class { '::mcollective::client::config': } ->
anchor { 'mcollective::client::end': }
}
|