summaryrefslogtreecommitdiff
blob: 3f483c4807febe5948da1121d1a867a29816a24b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/runscript
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/vcron/files/vcron.rc6,v 1.4 2002/04/20 12:07:13 azarah Exp $

depend() {
	need clock localmount logger
}

start() {
	ebegin "Starting vcron"
	start-stop-daemon --start --quiet --exec /usr/sbin/cron
	eend $?
}

stop() {
	ebegin "Stopping vcron"
	start-stop-daemon --stop --quiet --pidfile /var/run/cron.pid
	eend $?
}