blob: 0486a3acd3e5d4ea734c8e1fe5f8774c56b124d0 (
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 /usr/sbin/crond
eend $?
}
|