You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
414 B

#!/bin/sh
. /etc/init.d/functions
. /etc/init.d/globals
irqbalance=$(which irqbalance || type -p irqbalance)
if [ -z ${irqbalance} ]; then
SHOWINFO "irqbalance not found."
exit 1
fi
case $1 in
start)
mkdir -p /var/run/irqbalance
${irqbalance}
;;
stop)
trap "" INT
kill -INT $(pidof irqbalance)
;;
restart)
$0 stop
$0 start
;;
*)
echo "[$BASENAME] Usage: $0 {start|restart|stop}"
;;
esac