#!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 depend() { need modules } start() { ebegin "Starting thermal" start-stop-daemon --start --quiet --exec /usr/sbin/thermal -- -d -c eend $? "Failed to start thermal" } stop() { ebegin "Stopping thermal" start-stop-daemon --stop --exec /usr/sbin/thermal eend $? "Failed to stop thermal" } # vim:ts=4