#!/bin/sh
if test "$(nproc)" = 1; then
    echo "Not starting irqbalance: only one CPU detected"
    sv stop .
    exit 0
fi
exec /usr/sbin/irqbalance --foreground
