nagios-nrpe: add brackets in check grep
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2597|2|2595|2|:-1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/303//ansiblelint">Evolix » ansible-roles » unstable #303</a>
gitea/ansible-roles/pipeline/head This commit looks good

This commit is contained in:
William Hirigoyen 2023-07-24 15:35:09 +02:00
parent b6886384b9
commit c2e27d025c

View file

@ -6,7 +6,7 @@ if ! test -f /usr/lib/nagios/plugins/check_nrpe; then
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-)
command=$(grep "\[check_$1\]" /etc/nagios/nrpe.d/evolix.cfg | grep -v '^[[:blank:]]*#' | tail -n1 | cut -d'=' -f2-)
echo "Command:"
echo " $command"
fi