#!/sbin/runscript # Distributed under the terms of the GNU General Public License, v2 or later # $Header: $ start() { ebegin "Starting autothrottle" start-stop-daemon --start --quiet --exec /usr/bin/autothrottle eend $? } stop() { ebegin "Stopping autothrottle" start-stop-daemon --stop --quiet --exec /usr/bin/autothrottle eend $? }