summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/irqbalance/run
blob: f0d18f7893cb5433909635b94ceb58847253746a (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
#!/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