/etc/init/irqbalance.conf is in irqbalance 1.0.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # irqbalance - Daemon to balance interrupts for SMP system
# irqbalance is a daemon to balance interrupts across multiple CPUs, which
# can lear to better performance and IO balance on SMP systems.
description "CPU interrupts balancing daemon"
author "Chuck Short <zulcss@ubuntu.com>"
start on runlevel [2345]
stop on runlevel [!2345]
expect fork
script
test -f /etc/default/irqbalance && . /etc/default/irqbalance
test "$ENABLED" != "0" || exit 0
if test "$ONESHOT" != "0"; then
DOPTIONS="--oneshot"
fi
exec /usr/sbin/irqbalance $DOPTIONS
end script
|