11 lines
358 B
ObjectPascal
11 lines
358 B
ObjectPascal
|
class rut::rut_nrpe {
|
||
|
sunet::nagios::nrpe_command {'check_fleetlock_disabled':
|
||
|
command_line => '/usr/lib/nagios/plugins/check_fleetlock_disabled.sh'
|
||
|
}
|
||
|
file { "/usr/lib/nagios/plugins/check_fleetlock_disabled.sh":
|
||
|
ensure => "file",
|
||
|
content => template("rut/check_fleetlock_disabled.sh.erb"),
|
||
|
mode => '0755',
|
||
|
}
|
||
|
}
|