diff options
Diffstat (limited to 'dcron/crond')
-rwxr-xr-x | dcron/crond | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dcron/crond b/dcron/crond new file mode 100755 index 0000000..732889c --- /dev/null +++ b/dcron/crond @@ -0,0 +1,23 @@ +#!/bin/sh +# +# /etc/rc.d/crond: start/stop cron daemon +# + +case $1 in +start) + /usr/sbin/crond -S -l info + ;; +stop) + killall -q /usr/sbin/crond + ;; +restart) + $0 stop + sleep 2 + $0 start + ;; +*) + echo "usage: $0 [start|stop|restart]" + ;; +esac + +# End of file |