-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcheck_sentry
54 lines (44 loc) · 1.22 KB
/
check_sentry
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/sh
# check_sentry - a nagios plugin for checking if sentry is active
# by Matt Simerson
# Dec 10, 2013 - initial writing
# INSTRUCTIONS
# install this script in your nagios libexec dir (check nrpe.cfg)
# fetch -o /usr/local/libexec/nagios/check_sentry https://raw.githubusercontent.com/msimerson/sentry/master/check_sentry
#
# add a line like this nrpe.cfg:
# command[check_sentry]=/usr/local/libexec/nagios/check_sentry
#
# and restart nrpe:
# service nrpe2 restart
#
# install this script in your nagios libexec dir (check nrpe.cfg)
SENTRY_DIR=/var/db/sentry
SENTRY_BIN="$SENTRY_DIR/sentry.pl"
GREP=/usr/bin/grep
if [ ! -x $GREP ]; then
echo "ERROR: edit check_sentry and set GREP"
GREP=grep
fi
echoerr() { echo "$@" >&2; }
usage() {
echo " usage: $0"
echo " "
exit 3
}
$GREP -v '^#' /etc/hosts.allow | $GREP -q sentry
if [ $? -ne 0 ]; then
echo "sentry not active in hosts.allow!"
exit 2
fi
if [ ! -x $SENTRY_BIN ]; then
echoerr "sentry not executable by k$USER!"
if [ ! -d $SENTRY_DIR ]; then
echo "sentry dir ($SENTRY_DIR) doesn't exist!"
exit 2
fi
echo "OK - sentry appears installed and active"
exit 0
fi
echo "OK - sentry installed and active"
exit 0