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 |
# File 'manifests/monitor/nagiosplugins.pp', line 3
class psick::monitor::nagiosplugins (
Variant[Boolean,String] $ensure = present,
Boolean $auto_prereq = $::psick::auto_prereq,
) {
::tp::install { 'nagios-plugins':
ensure => $ensure,
auto_prereq => $auto_prereq,
}
}
|