diff options
Diffstat (limited to 'init.d/cron')
-rwxr-xr-x | init.d/cron | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/init.d/cron b/init.d/cron new file mode 100755 index 0000000..280035e --- /dev/null +++ b/init.d/cron @@ -0,0 +1,13 @@ +#!/sbin/runscript + +start() { + ebegin "Starting cron" + crond $CRON_OPTS + eend $? +} + +stop () { + ebegin "Stopping cron" + killall crond + eend $? +} |