blob: 3cd5c9dc85fdd23406d07f9d769fd5c67eb316c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
PID=`pidof -o %PPID /sbin/apcupsd`
case "$1" in
start)
stat_busy "Starting APCUPSD Daemon"
rm -f /etc/apcupsd/powerfail
rm -f /etc/nologin
[ -z "$PID" ] && /sbin/apcupsd -f /etc/apcupsd/apcupsd.conf
if [ $? -gt 0 ]; then
stat_fail
else
PID=`pidof -o %PPID /sbin/apcupsd`
echo $PID > /var/run/apcupsd.pid
add_daemon apcupsd
stat_done
fi
;;
stop)
stat_busy "Stopping APCUPSD Daemon"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm /var/run/apcupsd.pid
rm_daemon apcupsd
stat_done
fi
;;
restart)
$0 stop
sleep 2
$0 start
;;
status)
/sbin/apcaccess status
;;
*)
echo "usage: $0 {start|stop|restart|status}"
esac
exit 0
|