nagios-plugins/check_dataprotector/trunk/check_dp_tablespace

29 lines
504 B
Plaintext
Raw Normal View History

2010-03-01 23:09:31 +01:00
#!/bin/sh
#/opt/omni/bin/omnirpt -report db_size
echo $USER > /tmp/check_dp_tablespace.debug
echo $@ >> /tmp/check_dp_tablespace.debug
OUTPUT=$(/opt/omni/bin/omnirpt -report db_size)
RESULT=$?
if [ $RESULT -gt 0 ]; then
echo -n $OUTPUT
exit 1
fi
echo $OUTPUT | grep -q "No database devices with low disk space."
RESULT=$?
if [ $RESULT -gt 0 ]; then
echo "Warning - Some dataprotector tablespaces are running low"
exit 1
else
echo "OK - No database devices with low disk space."
exit 0
fi