summaryrefslogtreecommitdiffstats
path: root/source/a/dcron/rc.crond
blob: c9c94ec8993b7b6fe2da4ea60cdc3778392447e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh
# /etc/rc.d/rc.crond - start/stop the cron daemon

# To change the default options, edit /etc/default/crond.
if [ -r /etc/default/crond ]; then
  . /etc/default/crond
fi

start_crond() {
  if ! /usr/bin/pgrep --ns $$ --exact crond 1> /dev/null 2> /dev/null ; then
    echo "Starting crond:  /usr/sbin/crond $CROND_OPTS"
    mkdir -p /run/cron
    /usr/sbin/crond $CROND_OPTS
  fi
}

stop_crond() {
  echo "Stopping crond."
  /usr/bin/pkill --ns $$ --exact crond 2> /dev/null
}

restart_crond() {
  stop_crond
  sleep 1
  start_crond
}

case "$1" in
'start')
  start_crond
  ;;
'stop')
  stop_crond
  ;;
'restart')
  restart_crond
  ;;
*)
  echo "usage $0 start|stop|restart"
esac