Puppet Class: r_profile::puppet::master::agent_installers

Defined in:
manifests/puppet/master/agent_installers.pp

Overview

R_profile::Puppet::Master::Agent_installers

Configure puppet to install the most common agent installers

Parameters:

  • install (Any) (defaults to: hiera('r_profile::puppet::master::agent_installers::install', true))

    True to install all main Puppet agent installers

  • install_osx (Any) (defaults to: hiera('r_profile::puppet::master::agent_installers::install_osx', false))

    True to also install the OSX Puppet agent installers



7
8
9
10
11
12
13
14
15
16
# File 'manifests/puppet/master/agent_installers.pp', line 7

class r_profile::puppet::master::agent_installers(
    $install      = hiera('r_profile::puppet::master::agent_installers::install', true),
    $install_osx  = hiera('r_profile::puppet::master::agent_installers::install_osx', false),
){

  class { 'psquared::agent_installers':
    install            => $install,
    install_osx_agents => $install_osx,
  }
}