#!/sbin/runscript # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 # $Header: $ start() { einfo "Starting tcrond daemon" start-stop-daemon --start --quiet --exec /usr/sbin/tcrond return ${?} } stop() { ebegin "Stopping tcrond daemon" start-stop-daemon --stop --quiet --name tcrond result=${?} }