contrib/nut/upsd

25 lines
289 B
Plaintext
Raw Normal View History

2008-05-22 23:58:30 +02:00
#!/bin/sh
#
# /etc/rc.d/upsd: start/stop ups daemons
#
case "$1" in
start)
/usr/bin/upsdrvctl start
/usr/sbin/upsd
2008-05-22 23:58:30 +02:00
;;
stop)
/usr/sbin/upsd -c stop
2008-05-22 23:58:30 +02:00
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
2008-05-22 23:58:30 +02:00
echo "Usage: $0 [start|stop]"
exit 1
esac
# End of file