summaryrefslogtreecommitdiff
blob: 676b607bcbd0c5e16b572d9b9961328237ea27b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/anacron/files/anacron.rc6,v 1.3 2004/03/06 04:06:01 vapier Exp $

depend() {
	need clock hostname logger
}

start() {
	ebegin "Running anacron"
	/usr/sbin/anacron -s >>/var/log/cron.log 2>&1
	eend $?
}