dsa-check-dabackup: use old logfile if lockfile indicates da-backup still running
[mirror/dsa-nagios.git] / dsa-nagios-checks / checks / dsa-check-file_age
1 #!/bin/sh
2 # vim: set fileencoding=utf-8 ai noet sts=8 sw=8 tw=0:
3 #
4 # Copyright © 2009 Stephen Gran <sgran@debian.org>
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining
7 # a copy of this software and associated documentation files (the
8 # "Software"), to deal in the Software without restriction, including
9 # without limitation the rights to use, copy, modify, merge, publish,
10 # distribute, sublicense, and/or sell copies of the Software, and to
11 # permit persons to whom the Software is furnished to do so, subject to
12 # the following conditions:
13 #
14 # The above copyright notice and this permission notice shall be
15 # included in all copies or substantial portions of the Software.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
25 FILE=''
26 INTERVAL=60
27 EXIT=0
28
29 usage(){
30         ret=$1
31
32         cat <<EOF
33 $0: usage:
34         $0 <options>
35
36         File age checker for nagios.  Will alert if the named file is
37         older than the interval (interval default is 60 minutes)
38
39         -h      This help message
40         -i      Interval in minutes at which to alert
41         -f      File to check
42 EOF
43
44         exit $ret
45 }
46
47 while getopts f:i:h opt ; do
48         case "$opt" in
49                 f) FILE="$OPTARG" ;;
50                 i) INTERVAL="$OPTARG" ;;
51                 h) usage 0
52         esac
53 done
54
55 if [ -z "$FILE" ]; then
56         echo "Need file argument!" >&2
57         usage 3
58 fi
59
60 if [ ! -e "$FILE" ]; then
61         printf "state file %s is missing or unreadable\n" $FILE
62         exit 2
63 fi
64
65 if [ "$(( $( date +%s ) - $(stat -c %Y $FILE) ))" -gt "$(( $INTERVAL * 60 ))" ]; then
66         printf "state file %s is older than %d minutes\n" $FILE $INTERVAL
67         exit 2
68 fi
69
70 printf "state file %s OK: updated on %s\n" $FILE "$(stat -c %y $FILE)"