You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-process/vixie-cron/files/vixie-cron.rc6

23 lines
418 B

#!/sbin/runscript
# 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 $?
}