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 | |
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')
-rw-r--r-- | abs/extra-testing/community/network-ups-tools/finish | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/abs/extra-testing/community/network-ups-tools/finish b/abs/extra-testing/community/network-ups-tools/finish deleted file mode 100644 index d031d4e..0000000 --- a/abs/extra-testing/community/network-ups-tools/finish +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/sbin/upsd` - - stat_runit "Stopping UPSd Daemon" - /usr/bin/upsdrvctl stop &> /dev/null - /usr/sbin/upsmon -c stop &> /dev/null - [ ! -z "$PID" ] && kill $PID &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon upsd - stat_done - fi |