#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions

PID=`pidof -o %PPID /usr/sbin/upsd`
     stat_runit "Stopping UPSd Daemon"
     /usr/bin/upsdrvctl stop &> /dev/null
     /usr/sbin/upsmon -c stop &> /dev/null
     [ ! -z "$PID" ] && kill $PID &> /dev/null
     if [ $? -gt 0 ]; then
       stat_fail
     else
       rm_daemon upsd
       stat_done
     fi