summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/community/network-ups-tools/run
blob: c4985fd54f3f8e066511ef3681dc4a5255a9ac39 (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