core/dcron/crond

24 lines
252 B
Plaintext
Raw Normal View History

2006-02-23 15:26:10 +00:00
#!/bin/sh
#
# /etc/rc.d/crond: start/stop cron daemon
#
case $1 in
start)
2010-06-03 10:45:54 +00:00
/usr/sbin/crond -S -l info
2006-02-23 15:26:10 +00:00
;;
stop)
killall -q /usr/sbin/crond
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file