Puppet Class: psick::monitor::nagiosplugins
- Defined in:
- manifests/monitor/nagiosplugins.pp
Overview
This class installs Nagios plugins using tp
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'manifests/monitor/nagiosplugins.pp', line 3
class psick::monitor::nagiosplugins (
Variant[Boolean,String] $ensure = present,
Boolean $auto_prereq = $::psick::auto_prereq,
Boolean $manage = $::psick::manage,
Boolean $noop_manage = $::psick::noop_manage,
Boolean $noop_value = $::psick::noop_value,
) {
if $manage {
if $noop_manage {
noop($noop_value)
}
::tp::install { 'nagios-plugins':
ensure => $ensure,
auto_prereq => $auto_prereq,
}
}
}
|