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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#! /bin/sh
### BEGIN INIT INFO
# Provides: fcron
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
### END INIT INFO
#
# fcron fcron is a scheduler especially useful for people \
# who are not running their system all the time.
#
# Initscript by Henrique M. Holschuh <hmh@debian.org>.
#
# Based in /etc/init.d/skeleton:
# Written by Miquel van Smoorenburg <miquels@cistron.nl>.
# Modified for Debian GNU/Linux
# by Ian Murdock <imurdock@gnu.ai.mit.edu>.
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/fcron
NAME=fcron
DESC="advanced periodic command scheduler"
startdaemon () {
start-stop-daemon --start --quiet "$@" --pidfile /var/run/$NAME.pid --exec ${DAEMON} -- -b
}
stopdaemon () {
start-stop-daemon --stop --quiet "$@" --pidfile /var/run/$NAME.pid --exec ${DAEMON}
}
test -x $DAEMON || exit 0
set -e
case "$1" in
start)
echo -n "Starting $DESC: "
startdaemon
echo "${NAME}."
;;
stop)
echo -n "Stopping $DESC: "
stopdaemon --oknodo
echo "${NAME}."
;;
reload|force-reload)
echo "Reloading $DESC configuration files."
fcron-update-crontabs >/dev/null 2>&1
stopdaemon --signal 1
;;
restart)
echo -n "Restarting $DESC: "
stopdaemon || true
sleep 1
startdaemon
echo "${NAME}."
;;
# restart-if-running)
# echo -n "Stopping $DESC if it is running: "
# if start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid --exec ${DAEMON} ; then
# echo "${NAME}."
# echo -n "Restarting $DESC: "
# startdaemon
# echo "${NAME}."
# else
# echo "(not running)."
# fi
# ;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
exit 1
;;
esac
exit 0
|