#! /bin/sh # Author: Petter Reinholdtsen # License: GNU General Public License v2 or later # ### BEGIN INIT INFO # Provides: sas2ircu-statusd # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Check sas2ircu-status values in the background. ### END INIT INFO PATH=/sbin:/bin:/usr/sbin:/usr/bin DESC="sas2ircu-status monitor" NAME=sas2ircu-statusd PIDFILE=/var/run/$NAME.pid STATUSFILE=/var/run/$NAME.status SCRIPTNAME=/etc/init.d/$NAME # Do not touch you can configure this in /etc/default/sas2ircu-statusd MAILTO=root # Where to report problems PERIOD=600 # Seconds between each check (default 10 minutes) REMIND=7200 # Seconds between each reminder (default 2 hours) RUN_DAEMON=yes [ -e /etc/default/sas2ircu-statusd ] && . /etc/default/sas2ircu-statusd # Gracefully exit if the package has been removed. test -x /usr/sbin/sas2ircu-status || exit 0 . /lib/lsb/init-functions [ -e /etc/default/rcS ] && . /etc/default/rcS if [ $RUN_DAEMON = "no" ] ; then log_begin_msg "sas2ircu-statusd is disabled in /etc/default/sas2ircu-statusd, not starting." log_end_msg 0 exit 0 fi check_sas2ircu() { echo $$ > $PIDFILE.new && mv $PIDFILE.new $PIDFILE while true ; do # Check ever $PERIOD seconds, send email on every status # change and repeat ever $REMIND seconds if the raid is still # bad. if (sas2ircu-status) |grep -q 'NOT OPTIMAL' ; then BADRAID=true logger -t sas2ircu-statusd "detected non-optimal RAID status" else BADRAID=false fi STATUSCHANGE=false if [ true = "$BADRAID" ] ; then # RAID not OK (sas2ircu-status) > $STATUSFILE.new if [ ! -f $STATUSFILE ] ; then # RAID just became broken STATUSCHANGE=true mv $STATUSFILE.new $STATUSFILE elif cmp -s $STATUSFILE $STATUSFILE.new ; then # No change. Should we send reminder? LASTTIME="`stat -c '%Z' $STATUSFILE`" NOW="`date +%s`" SINCELAST="`expr $NOW - $LASTTIME`" if [ $REMIND -le "$SINCELAST" ]; then # Time to send reminder STATUSCHANGE=true mv $STATUSFILE.new $STATUSFILE else rm $STATUSFILE.new fi else STATUSCHANGE=true mv $STATUSFILE.new $STATUSFILE fi else # RAID OK if [ -f $STATUSFILE ] ; then rm $STATUSFILE STATUSCHANGE=true fi fi if [ true = "$STATUSCHANGE" ]; then hostname="`uname -n`" ( cat < /dev/null 2>&1 DAEMONPID=`ps aux | grep '/usr/bin/daemon /etc/init.d/sas2ircu-statusd check_sas2ircu' | grep -v 'grep' | awk '{ print $2 }'` SCRIPTPID=`cat $PIDFILE` kill -9 $DAEMONPID $SCRIPTPID || true rm -f $PIDFILE else log_progress_msg "Daemon is already stopped." return 0 fi } # This is a workaround function which does not directly exit and # therefore can be used by a restart d_stop_by_restart() { if [ -f $PIDFILE ] ; then # Doesn't work (kill init script instance, but not daemon...) #start-stop-daemon --oknodo --stop --quiet --pidfile $PIDFILE DAEMONPID=`ps aux | grep '/usr/bin/daemon /etc/init.d/sas2ircu-statusd check_sas2ircu' | grep -v 'grep' | awk '{ print $2 }'` SCRIPTPID=`cat $PIDFILE` kill -9 $DAEMONPID $SCRIPTPID || true rm -f $PIDFILE log_end_msg 0 else log_progress_msg "Daemon is already stopped." log_end_msg 0 fi } case "$1" in start) echo -n "" log_begin_msg "Starting $DESC: $NAME" d_start ; CODE=$? log_end_msg $CODE ;; stop) log_begin_msg "Stopping $DESC: $NAME" d_stop ; CODE=$? log_end_msg $CODE ;; check_sas2ircu) check_sas2ircu ;; restart|force-reload) log_begin_msg "Restarting $DESC: $NAME" d_stop_by_restart sleep 1 d_start || CODE=$? log_end_msg $CODE ;; *) # echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2 echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2 exit 1 ;; esac exit 0