#!/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 $? }