mirror of
https://github.com/opinkerfi/nagios-plugins.git
synced 2024-11-22 10:23:46 +01:00
This commit is contained in:
parent
aee4793de1
commit
72b5d24185
@ -1,6 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
|
||||||
|
export PATH=$PATH:/usr/lib/nagios/plugins/:/usr/lib64/nagios/plugins/
|
||||||
|
|
||||||
|
|
||||||
# Nagios exit codes
|
# Nagios exit codes
|
||||||
OK=0
|
OK=0
|
||||||
@ -59,7 +61,15 @@ do
|
|||||||
done
|
done
|
||||||
|
|
||||||
LOCALTIME=`/bin/date +%s`
|
LOCALTIME=`/bin/date +%s`
|
||||||
REMOTETIME=`/usr/lib/nagios/plugins/check_nrpe -H $hostaddress -c get_time`
|
REMOTETIME=`check_nrpe -H $hostaddress -c get_time 2>&1`
|
||||||
|
RESULT=$?
|
||||||
|
|
||||||
|
if [ $RESULT -gt 0 ]; then
|
||||||
|
echo "Unknown - Could not execute check_nrpe"
|
||||||
|
echo "Error was:"
|
||||||
|
echo $REMOTETIME
|
||||||
|
exit 3
|
||||||
|
fi
|
||||||
|
|
||||||
for i in $warning $critical ; do
|
for i in $warning $critical ; do
|
||||||
if [ ! $i -ge 0 ]; then
|
if [ ! $i -ge 0 ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user