1
0
mirror of https://github.com/opinkerfi/nagios-plugins.git synced 2024-09-19 20:22:24 +02:00
nagios-plugins/check_dataprotector/trunk/check_dp_idb
Páll Guðjón Sigurðsson 7e0aef04d5 check_dataprotector added
2010-03-01 22:09:31 +00:00

18 lines
316 B
Bash
Executable File

#!/bin/sh
WARNING=5
CRITICAL=2
/opt/omni/bin/omnirpt -tab -report obj_lastbackup -days -$WARNING | grep -w IDB > /dev/null
RESULT=$?
if [ $RESULT -gt 0 ]; then
echo "Warning, Last Dataprotector backup is more than $WARNING days old"
exit 1
fi
echo "Last Dataprotector backup is less than $WARNING days old"