summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/community/network-ups-tools/run.upsd
blob: 83be88da37b1948ab4d0145505726f1baa6aa37a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

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

PID=`pidof -o %PPID /usr/sbin/upsd`

    stat_runit "Starting UPSd Daemon"
    /usr/bin/upsdrvctl start &> /dev/null
    [ -z "$PID" ] && /usr/sbin/upsd &>/dev/null
    /usr/sbin/upsmon &>/dev/null
    if [ $? -gt 0 ]; then
       stat_fail
    else
       add_daemon upsd
       stat_done
   fi

   while [ -n $PID ] ; do
   sleep 60
   done