nagios-plugins/check_dataprotector/trunk/check_dp_idb

18 lines
316 B
Plaintext
Raw Normal View History

2010-03-01 23:09:31 +01:00
#!/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"