#!/sbin/runscript start() { ebegin "Starting dell fan control" start-stop-daemon --start --background --quiet \ --pidfile /var/run/dellfand.pid --make-pidfile \ --exec /usr/sbin/dellfand \ -- 0 ${SLEEP_TIME:-2} ${FAN_OFF:-30} ${FAN_LOW:-38} ${FAN_HIGH:-40} eend $? } stop() { ebegin "Stopping dell fan control" start-stop-daemon --stop --quiet --pidfile /var/run/dellfand.pid eend $? }