diff options
author | Michael Hanson <hansonorders@verison.net> | 2010-03-25 00:39:23 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verison.net> | 2010-03-25 00:39:23 (GMT) |
commit | 369bb6314419c513693a3b5546f6272bd0a6a20c (patch) | |
tree | a977fe9c416ce402191a6d12de45164877093e95 /abs/extra-testing/community/network-ups-tools/finish.upsd | |
parent | 698caea6972d83123dfa9f03b67cbd8598e7a2f3 (diff) | |
download | linhes_pkgbuild-369bb6314419c513693a3b5546f6272bd0a6a20c.zip linhes_pkgbuild-369bb6314419c513693a3b5546f6272bd0a6a20c.tar.gz linhes_pkgbuild-369bb6314419c513693a3b5546f6272bd0a6a20c.tar.bz2 |
network-ups-tools: Found a way to run in the foreground without a loop.
Diffstat (limited to 'abs/extra-testing/community/network-ups-tools/finish.upsd')
-rw-r--r-- | abs/extra-testing/community/network-ups-tools/finish.upsd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/abs/extra-testing/community/network-ups-tools/finish.upsd b/abs/extra-testing/community/network-ups-tools/finish.upsd new file mode 100644 index 0000000..4596ff1 --- /dev/null +++ b/abs/extra-testing/community/network-ups-tools/finish.upsd @@ -0,0 +1,10 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +svwaitdown -t 3 -k /var/service/upsdrvctl /var/service/upsmon || exit 1 + +PID=`pidof -o %PPID /usr/sbin/upsd` + stat_runit "Stopping UPSd Daemon" + [ ! -z "$PID" ] && kill $PID &> /dev/null |