Puppet Plan: mcollective_agent_puppet::enable
- Defined in:
- plans/enable.pp
Overview
Enables Puppet on the provided nodes
5 6 7 8 9 10 11 12 13 14 |
# File 'plans/enable.pp', line 5
plan mcollective_agent_puppet::enable (
Choria::Nodes $nodes,
) {
choria::task(
"action" => "puppet.enable",
"nodes" => $nodes,
"fail_ok" => true,
"silent" => true
)
}
|