mirror of
https://github.com/opinkerfi/nagios-plugins.git
synced 2024-11-04 17:43:46 +01:00
38 lines
1.1 KiB
Bash
Executable File
38 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright 2010, Pall Sigurdsson <palli@opensource.is>
|
|
#
|
|
# This script is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This script is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# About this script
|
|
#
|
|
# This script checks for the latest IDB backup of HP Dataprotector
|
|
# If latest backup is more than $WARNING days old, issue a warning
|
|
|
|
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"
|
|
|