#! /bin/sh
#
# apcupsd      This shell script takes care of starting and stopping
#	       the apcupsd UPS monitoring daemon.
#
# chkconfig: - 60 99
# description: apcupsd monitors power and takes action if necessary
#
APCPID=/var/run/apcupsd.pid

if test -f /etc/whitebox-release ; then
   f=/etc/whitebox-release
else
   f=/etc/redhat-release
fi
if test `cat $f | grep release |\
     cut -f 3 -d ' '`x = "Enterprise"x ; then
   DISTVER="Enterprise "`cat $f | grep release |\
     cut -f 6 -d ' '`
else
   DISTVER=`cat /etc/redhat-release | grep release |\
     cut -f 5 -d ' '`
fi

# Source function libarary
. /etc/rc.d/init.d/functions

case "$1" in
    start)
       rm -f /etc/apcupsd/powerfail
       rm -f /etc/nologin
       echo -n "Starting UPS monitoring:" 
       daemon /usr/sbin/apcupsd -f /etc/apcupsd/apcupsd.conf
       RETVAL=$?
       echo
       [ $RETVAL -eq 0 ] && touch /var/lock/subsys/apcupsd
       ;;
    stop)
       echo -n "Shutting down UPS monitoring:"
       killproc apcupsd
       echo
       rm -f $APCPID
       rm -f /var/lock/subsys/apcupsd
       ;;
    restart|force-reload)
       $0 stop
       $0 start
       ;;
    condrestart)
       [ -f /var/lock/subsys/ypbind ] && $0 restart || :
       ;;
    reload)
       echo "$0: reload not implemented"
       exit 3
       ;;
    status)
       status apcupsd
       RETVAL=$?
       if [ $RETVAL -eq 0 ]
       then
          /usr/sbin/apcaccess status
       else
          exit $RETVAL
       fi
       ;;
    *)
       echo "Usage: $0 {start|stop|restart|condrestart|status}"
       exit 1
       ;;
esac
exit 0
