summaryrefslogtreecommitdiffstats
path: root/main/busybox-initscripts/cron.initd
blob: ffae38b806d5ac014ffa16358035e19104b34e8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/sbin/runscript

start() {
	ebegin "Starting busybox cron"
	start-stop-daemon --start --exec /usr/sbin/crond -- $CRON_OPTS
	eend $?
}

stop () {
	ebegin "Stopping busybox cron"
	start-stop-daemon --stop --exec crond
	eend $?
}