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_services

13 lines
242 B
Plaintext
Raw Normal View History

2010-03-01 23:09:31 +01:00
#!/bin/sh
/opt/omni/sbin/omnisv -status | grep "Status: All Data Protector relevant processes/services up and running."
RESULT=$?
if [ $RESULT -gt 0 ]; then
echo "Critical, some Data Protector services are in stopped state"
exit 1
fi