nagios-nrpe: fix variable use in check_ipsecctl_critiques.sh

This commit is contained in:
Jérémy Dubois 2024-05-06 11:21:18 +02:00
parent 99ff7284a3
commit e0b9c03798
2 changed files with 5 additions and 4 deletions

View file

@ -104,6 +104,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* etc-git: Remove deprecated/unsupported "warn" parameter
* ospf, bgp: fix checks scripts
* base, collectd, etc-git, logsentry, nagios-nrpe: install packages manually because openbsd_pkg module is broken since OpenBSD 7.4 with the version of Ansible we currently use
* nagios-nrpe: fix variable use in check_ipsecctl_critiques.sh
### Removed

View file

@ -72,8 +72,8 @@ if [ $STATUS -eq 0 ]; then
# Definition of the source IP of the ping according to the source network used (our side, adjust the -I option)
case $vpn in
*vlan1*)
for i in $dst_ip; do
ping -q -i 0.1 -I 192.168.5.5 -c 3 -w 1 "$dst_ip" >/dev/null
for ip in $dst_ip; do
ping -q -i 0.1 -I 192.168.5.5 -c 3 -w 1 "$ip" >/dev/null
if [ $? -eq 0 ]; then
pingok=$(($pingok + 1))
fi
@ -81,8 +81,8 @@ if [ $STATUS -eq 0 ]; then
;;
*vlan2*)
for i in $dst_ip; do
ping -q -i 0.1 -I 172.16.2.5 -c 3 -w 1 "$dst_ip" >/dev/null
for ip in $dst_ip; do
ping -q -i 0.1 -I 172.16.2.5 -c 3 -w 1 "$ip" >/dev/null
if [ $? -eq 0 ]; then
pingok=$(($pingok + 1))
fi