blob: f549950e082898a49640ae07616e525325cd8c4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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 -f &>/dev/null
/usr/sbin/upsmon &>/dev/null
if [ $? -gt 0 ]; then
stat_fail
else
add_daemon upsd
stat_done
fi
|