You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
369 B
22 lines
369 B
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
printf "Starting cron ... "
|
|
start-stop-daemon -S -q -m -b -p /var/run/dcron.pid --exec /usr/sbin/crond -- -f
|
|
echo "done."
|
|
;;
|
|
stop)
|
|
printf "Stopping cron ..."
|
|
start-stop-daemon -K -q -p /var/run/dcron.pid
|
|
echo "done."
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "usage: $0 {start|stop|restart}"
|
|
;;
|
|
esac
|
|
|