Fixed a missing file for nagios instance

This commit is contained in:
Maria Haider 2021-05-24 15:35:41 +02:00
parent 6470f84c3b
commit 7dd46f0536
Signed by: mariah
GPG key ID: 7414A760CA747E57
2 changed files with 18 additions and 0 deletions

View file

@ -982,6 +982,12 @@ class nagios_monitor {
mode => '0600',
;
}
#definition for check_nrpe_1arg
file { '/etc/nagios-plugins/config/check_nrpe.cfg':
ensure => file,
mode => '0644',
content => template('eid/monitor/check_nrpe.cfg.erb'),
}
nagioscfg::slack::channel {'eln': } ->
nagioscfg::contactgroup {'alerts': } ->
nagioscfg::contact {'slack-alerts':

View file

@ -0,0 +1,12 @@
# this command runs a program $ARG1$ with arguments $ARG2$
# this file is managed with puppet.
define command {
command_name check_nrpe
command_line /usr/lib/nagios/plugins/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ -a $ARG2$
}
# this command runs a program $ARG1$ with no arguments
define command {
command_name check_nrpe_1arg
command_line /usr/lib/nagios/plugins/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
}