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 $? }