ansible-roles/nagios-nrpe/files/check-local
William Hirigoyen 2af2e5ee78
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2623|6|2617|5|:-1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/342//ansiblelint">Evolix » ansible-roles » unstable #342</a>
gitea/ansible-roles/pipeline/head This commit looks good
nagios-nrpe: set default check_load --per-cpu for BSD
2023-09-11 09:25:21 +02:00

28 lines
730 B
Bash
Executable file

#!/usr/bin/env bash
CHECK_BIN=/usr/lib/nagios/plugins/check_nrpe
if ! test -f "${CHECK_BIN}"; then
echo "${CHECK_BIN} is missing, please install nagios-nrpe-plugin package."
exit 1
fi
for file in /etc/nagios/{nrpe.cfg,nrpe_local.cfg,nrpe.d/evolix.cfg}; do
if [ -r ${file} ]; then
found_command=$(grep "\[check_$1\]" "${file}" | grep -v '^[[:blank:]]*#' | tail -n1 | cut -d'=' -f2-)
fi
if [ -n "${found_command}" ]; then
command="${found_command}"
fi
done
if [ -n "${command}" ]; then
echo "Found command in /etc/nagios (take care, in some cases, Nagios can play another command):"
echo " ${command}"
fi
echo "NRPE daemon output:"
"${CHECK_BIN}" -H 127.0.0.1 -c "check_$1"