summaryrefslogtreecommitdiffstats
path: root/init.d/cron
blob: 280035efc48de402f3181881c7844989b8362d16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/sbin/runscript

start() {
	ebegin "Starting cron"
	crond $CRON_OPTS
	eend $?
}

stop () {
	ebegin "Stopping cron"
	killall crond
	eend $?
}