]> git.sven.stormbind.net Git - sven/mpt-status.git/blob - mpt-status.init
5209872c8f779c5b6fc2a795855a09accc7cf0ea
[sven/mpt-status.git] / mpt-status.init
1 #! /bin/sh
2
3 # Author: Petter Reinholdtsen <pere@hungry.com>
4 # License: GNU General Public License v2 or later
5
6 # mpt-statusd - Check mpt-status values in the background.
7 #
8 # chkconfig:   345 60 50
9 # description: Check mpt-status values in the background \
10 # using daemonize and the mpt-status utility.
11
12 ### BEGIN INIT INFO
13 # Provides:          mpt-statusd
14 # Required-Start:    $remote_fs $syslog
15 # Required-Stop:     $remote_fs $syslog
16 # Default-Start:     2 3 4 5
17 # Default-Stop:      0 1 6
18 # Short-Description: Check mpt-status values in the background.
19 ### END INIT INFO
20
21 PATH=/sbin:/bin:/usr/sbin:/usr/bin
22 DESC="mpt-status monitor"
23 NAME=mpt-statusd
24 PIDFILE=/var/run/$NAME.pid
25 STATUSFILE=/var/run/$NAME.status
26 SCRIPTNAME=/etc/init.d/$NAME
27
28
29 # Do not touch you can configure this in /etc/default/mpt-statusd
30 MAILTO=root   # Where to report problems
31 PERIOD=600    # Seconds between each check    (default 10 minutes)
32 REMIND=7200   # Seconds between each reminder (default 2 hours)
33 RUN_DAEMON=yes
34 ID=0
35
36 [ -e /etc/default/mpt-statusd ] && . /etc/default/mpt-statusd
37
38 # Gracefully exit if the package has been removed.
39 test -x /usr/sbin/mpt-status || exit 0
40
41 # Source function library.
42 . /etc/rc.d/init.d/functions
43 . /lib/lsb/init-functions
44
45 if [ $RUN_DAEMON = "no" ] ; then
46         log_failure_msg $"mpt-statusd is disabled in /etc/default/mpt-statusd, not starting."
47         exit 0
48 fi
49
50
51 #Try to blindly load the mptctl module
52 modprobe mptctl || true
53
54 if ! [ -e "/proc/mpt/version" ] ; then
55         log_failure_msg "The mptctl module is missing."
56         exit 0
57 fi
58
59 check_mpt() {
60     echo $$ > $PIDFILE.new && mv $PIDFILE.new $PIDFILE
61     while true ; do
62         # Check ever $PERIOD seconds, send email on every status
63         # change and repeat ever $REMIND seconds if the raid is still
64         # bad.
65         if (mpt-status -i $ID) |grep -q 'state OPTIMAL' ; then
66             BADRAID=false
67         else
68             BADRAID=true
69             logger -t mpt-statusd "detected non-optimal RAID status"
70         fi
71         STATUSCHANGE=false
72         if [ true = "$BADRAID" ] ; then
73             # RAID not OK
74             (mpt-status -i $ID) > $STATUSFILE.new
75             if [ ! -f $STATUSFILE ] ; then # RAID just became broken
76                 STATUSCHANGE=true
77                 mv $STATUSFILE.new $STATUSFILE
78             elif cmp -s $STATUSFILE $STATUSFILE.new ; then
79                 # No change.  Should we send reminder?
80                 LASTTIME="`stat -c '%Z' $STATUSFILE`"
81                 NOW="`date +%s`"
82                 SINCELAST="`expr $NOW - $LASTTIME`"
83                 if [ $REMIND -le "$SINCELAST" ]; then
84                     # Time to send reminder
85                     STATUSCHANGE=true
86                     mv $STATUSFILE.new $STATUSFILE
87                 else
88                     rm $STATUSFILE.new
89                 fi
90             else
91                 STATUSCHANGE=true
92                 mv $STATUSFILE.new $STATUSFILE
93             fi
94         else
95             # RAID OK
96             if [ -f $STATUSFILE ] ; then
97                 rm $STATUSFILE
98                 STATUSCHANGE=true
99             fi
100         fi
101                 
102         if [ true = "$STATUSCHANGE" ]; then
103             hostname="`uname -n`"
104             (
105                 cat <<EOF 
106 This is a RAID status update from mpt-statusd.  The mpt-status
107 program reports that one of the RAIDs changed state:
108
109 EOF
110                 if [ -f $STATUSFILE ] ; then
111                     cat $STATUSFILE
112                 else
113                     (mpt-status -i $ID)
114                 fi
115                 echo
116                 echo "Report from $0 on $hostname"
117             ) | mail -s "info: mpt raid status change on $hostname" $MAILTO
118         fi
119         sleep $PERIOD
120     done
121 }
122
123 check_daemon() {
124         # Let's check if there is a daemon which is really running and not timing out
125         DAEMON_RUN=`ps aux | grep "/etc/init.d/mpt-statusd check_mpt" | grep -v grep | grep -v daemon`
126         if [ -n "$DAEMON_RUN" ] ; then
127                 return 1;
128         else
129                 return 0;
130         fi
131 }
132
133 #
134 #       Function that starts the daemon/service.
135 #
136 d_start() {
137     [ -f $PIDFILE ] && PID="`cat $PIDFILE`"
138     if [ "$PID" ] ; then
139         log_warning_msg "Daemon already running. Refusing to start another"
140         return 0
141     elif check_daemon ; then
142         # Use daemonize to turn it into a daemon and start it with daemon().
143         daemon --pidfile $PIDFILE /usr/sbin/daemonize $SCRIPTNAME check_mpt
144         return 0
145     else
146         log_warning_msg "Daemon is already running. Refusing to start another"
147         return 0
148     fi
149 }
150
151 #
152 #       Function that stops the daemon/service.
153 #
154 d_stop() {
155         if [ -f $PIDFILE ] ; then
156                 killproc -p $PIDFILE $SCRIPTNAME > /dev/null 2>&1 
157                 rm -f $PIDFILE
158         else
159                 log_warning_msg "Daemon is already stopped."
160                 return 0
161         fi
162 }
163
164 # This is a workaround function which does not directly exit and
165 # therefore can be used by a restart
166 d_stop_by_restart() {
167         if [ -f $PIDFILE ] ; then
168                 killproc -p $PIDFILE $SCRIPTNAME > /dev/null 2>&1 
169                 rm -f $PIDFILE
170         else
171                 log_warning_msg "Daemon is already stopped."
172         fi
173 }
174
175 case "$1" in
176   start)
177         echo -n ""
178         echo -n $"Starting $DESC: $NAME"
179         d_start
180         ;;
181   stop)
182         echo -n $"Stopping $DESC: $NAME"
183         d_stop
184         ;;
185   check_mpt)
186         check_mpt
187         ;;
188   restart|force-reload)
189         echo -n "Restarting $DESC: $NAME"
190         d_stop_by_restart
191         sleep 1
192         d_start
193         ;;
194   *)
195         echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2
196         exit 1
197         ;;
198 esac
199
200 exit 0