summaryrefslogtreecommitdiff
blob: 8ad76f24020826ec973993cc64fd7381837fc196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/anacron/files/anacron.rc6,v 1.1.1.1 2005/11/30 09:49:10 chriswhite Exp $

depend() {
	use logger
	need clock hostname 
}

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