diff options
author | Michael Hanson <hansonorders@verison.net> | 2010-03-09 23:02:11 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verison.net> | 2010-03-09 23:02:11 (GMT) |
commit | c06c016e53a5738325fe2ec824336b2707e6440a (patch) | |
tree | bb85d4f2b1b2e0e64c43bb779610503ea11108d4 /abs/extra-testing | |
parent | dd7cf9e9936e3afdbb00f34f0a91310f25054a01 (diff) | |
download | linhes_pkgbuild-c06c016e53a5738325fe2ec824336b2707e6440a.zip linhes_pkgbuild-c06c016e53a5738325fe2ec824336b2707e6440a.tar.gz linhes_pkgbuild-c06c016e53a5738325fe2ec824336b2707e6440a.tar.bz2 |
irqbalance: making package compatable with runit
Diffstat (limited to 'abs/extra-testing')
-rw-r--r-- | abs/extra-testing/irqbalance/finish | 15 | ||||
-rw-r--r-- | abs/extra-testing/irqbalance/irqbalance.install | 10 | ||||
-rw-r--r-- | abs/extra-testing/irqbalance/run | 25 |
3 files changed, 50 insertions, 0 deletions
diff --git a/abs/extra-testing/irqbalance/finish b/abs/extra-testing/irqbalance/finish new file mode 100644 index 0000000..ccd9278 --- /dev/null +++ b/abs/extra-testing/irqbalance/finish @@ -0,0 +1,15 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +PID=`pidof -o %PPID /usr/sbin/irqbalance` + + stat_runit "Stopping IRQ balancing" + [ ! -z "$PID" ] && kill $PID &> /dev/null + if [ $? -gt 0 ]; then + stat_fail + else + rm_daemon irqbalance + stat_done + fi diff --git a/abs/extra-testing/irqbalance/irqbalance.install b/abs/extra-testing/irqbalance/irqbalance.install new file mode 100644 index 0000000..d4e15f1 --- /dev/null +++ b/abs/extra-testing/irqbalance/irqbalance.install @@ -0,0 +1,10 @@ +post_install () { + add_service.sh irqbalance + +} + +pre_remove () { + remove_service.sh irqbalance + +} + diff --git a/abs/extra-testing/irqbalance/run b/abs/extra-testing/irqbalance/run new file mode 100644 index 0000000..f0d18f7 --- /dev/null +++ b/abs/extra-testing/irqbalance/run @@ -0,0 +1,25 @@ +#!/bin/bash + +# source application-specific settings +ONESHOT=0 +[ -f /etc/conf.d/irqbalance ] && . /etc/conf.d/irqbalance + +if [ "$ONESHOT" -ne 0 ]; then + ONESHOT_CMD="oneshot" +fi + +. /etc/rc.conf +. /etc/rc.d/functions + +PID=`pidof -o %PPID /usr/sbin/irqbalance` + + stat_runit "Starting IRQ balancing" + [ -z "$PID" ] && /usr/sbin/irqbalance --debug $ONESHOT_CMD >/dev/null + if [ $? -gt 0 ]; then + stat_fail + else + if [ "$ONESHOT" -eq 0 ]; then + add_daemon irqbalance + fi + stat_done + fi |