retire da-backup checks
[mirror/dsa-nagios.git] / dsa-nagios-checks / sbin / dsa-wrap-nagios-check
1 #!/bin/sh
2
3 # Copyright 2017 Peter Palfrader
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be
14 # included in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
24 # wrap a nagios check and write a status-file to be used with dsa-check-statusfile
25
26 set -u
27
28 STATUSDIR=/var/cache/dsa/nagios
29
30 usage(){
31   ret=$1
32
33   cat <<EOF
34 $0: usage:
35   $0 <options> <nagios-check> [nagios-check-options]
36
37   Calls nagios-check and stores its result in a state
38   file in status-dir.  The state file is named after
39   the nagios check (but can be overridden with -s).
40
41   -S <dir>      state dir ($STATUSDIR)
42   -s <filename> state file name
43   -h            print this help
44 EOF
45
46   exit $ret
47 }
48
49
50 while getopts S:s:h opt ; do
51   case "$opt" in
52     S) STATUSDIR="$OPTARG" ;;
53     s) STATUSFILE="$OPTARG";;
54     h) usage 0 ;;
55     ?) usage 1 ;;
56   esac
57 done
58 shift $(($OPTIND - 1))
59 if [ "$#" = 0 ]; then
60   usage 1 >&2
61 fi
62
63 if [ -z "${STATUSFILE:-}" ]; then
64   STATUSFILE="$(basename "$1")"
65 fi
66
67 if ! [ -d "$STATUSDIR" ]; then
68   echo >&2 "status directory $STATUSDIR does not exist."
69   exit 3
70 fi
71
72 tmp=`tempfile`
73 trap "rm -f '$tmp'" exit
74 "$@" > "$tmp" 2>&1
75 result="$?"
76 case "$result" in
77   0)
78     st="OK"
79     ;;
80   1)
81     st="WARNING"
82     ;;
83   2)
84     st="CRITICAL"
85     ;;
86   *)
87     st="UNKNOWN"
88     ;;
89 esac
90 (echo "$st"; cat "$tmp") > "$STATUSDIR/$STATUSFILE"