#!/sbin/openrc-run # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ depend() { use clock logger need localmount provide cron } start() { ebegin "Starting vixie-cron" start-stop-daemon --start --quiet --exec /usr/sbin/cron eend $? } stop() { ebegin "Stopping vixie-cron" start-stop-daemon --stop --quiet --pidfile /var/run/cron.pid eend $? }