ansible-roles/nagios-nrpe/files/check-local
William Hirigoyen 64c1da40b0
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2785|3|2782|4|:+1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/274//ansiblelint">Evolix » ansible-roles » unstable #274</a>
gitea/ansible-roles/pipeline/head This commit looks good
nagios-nrpe: corrige les cas où un check est défini plusieurs fois ou commenté
2023-06-21 16:14:35 +02:00

18 lines
492 B
Bash
Executable file

#!/usr/bin/env bash
if ! test -f /usr/lib/nagios/plugins/check_nrpe; then
echo '/usr/lib/nagios/plugins/check_nrpe is missing, please install nagios-nrpe-plugin package.'
exit 1
fi
if [ -r /etc/nagios/nrpe.d/evolix.cfg ]; then
command=$(grep "check_$1" /etc/nagios/nrpe.d/evolix.cfg | grep -v '^[[:blank:]]*#' | tail -n1 | cut -d'=' -f2-)
echo "Command:"
echo " $command"
fi
echo "NRPE daemon output:"
/usr/lib/nagios/plugins/check_nrpe -H 127.0.0.1 -c "check_$1"