summaryrefslogtreecommitdiff
blob: 29a463d41003ea7f7a218333b7f11bdd51301440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/fcron/files/fcron.rc6,v 1.4 2004/07/15 00:41:33 agriffis Exp $

depend() {
	need clock hostname logger
	provide cron
}

checkconfig() {
	if [ ! -e /etc/fcron/fcron.conf ] ; then
		eerror "You will need an /etc/fcron/fcron.conf first"
		eerror "There is a sample in /etc/fcron"
		return 1
	fi
}

start() {
	checkconfig || return 1
	ebegin "Starting fcron"
	start-stop-daemon --start --quiet --exec /usr/sbin/fcron
	eend $?
}

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