core/dcron/crond
2006-02-23 15:26:10 +00:00

24 lines
258 B
Bash
Executable File

#!/bin/sh
#
# /etc/rc.d/crond: start/stop cron daemon
#
case $1 in
start)
/usr/sbin/crond &> /var/log/cron
;;
stop)
killall -q /usr/sbin/crond
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file