#!/bin/sh # # chkconfig: 2345 40 60 # description: fcron is a scheduler especially useful for people \ # who are not running their system all the time. # processname: fcron # pidfile: /var/run/fcron.pid # config: /var/spool/fcron/* ### BEGIN INIT INFO # Provides: fcron # Required-Start: $remote_fs $syslog $time # Required-Stop: $remote_fs $syslog # Should-Start: # Should-Stop: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Fcron job service # Description: Fcron job service ### END INIT INFO export PATH="/sbin:/usr/sbin:/bin:/usr/bin" FUNCTION=0 SBIN=/usr/sbin REBOOT_LOCK=/var/run/fcron.reboot EXEC="$SBIN/fcron" TARGETS="{start|stop|status|restart|reload|force-reload}" # Source function library. # the 'status' function is considered to be here only if $FUNCTION = 1 and # the condrestart action is only implemented in that case STARTCMD="$EXEC -b" STOPCMD="pkill -TERM fcron" FINALECHO=":" RETVAL=0 # See how we were called. case "$1" in start) if test $FUNCTION -eq 1; then status fcron >/dev/null 2>&1 && exit 0 fi [ -x "$EXEC" ] || exit 5 echo "Starting fcron" $STARTCMD RETVAL=$? if test -d /var/lock/subsys/; then [ $RETVAL -eq 0 ] && touch /var/lock/subsys/fcron fi $FINALECHO ;; stop) if test $FUNCTION -eq 1; then status fcron >/dev/null 2>&1 || exit 0 fi echo "Shutting down fcron" $STOPCMD RETVAL=$? if test -d /var/lock/subsys/; then [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/fcron fi if test \( "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "6" \) \ -a -f "$REBOOT_LOCK" ; then # Make sure the lock file is deleted on reboot/shutdown # in case the OS doesn't do it itself rm -f "$REBOOT_LOCK" fi $FINALECHO ;; status) if test $FUNCTION -eq 1; then status fcron RETVAL=$? fi ;; restart) $0 stop sleep 0.5 $0 start RETVAL=$? ;; reload|force-reload) if test $FUNCTION -eq 1; then status fcron >/dev/null 2>&1 || exit 7 fi pkill -HUP fcron RETVAL=$? ;; condrestart|try-restart) if test $FUNCTION -eq 1; then status fcron >/dev/null 2>&1 || exit 0 $0 restart RETVAL=$? else echo "Usage: fcron $TARGETS" exit 2 fi ;; *) echo "Usage: fcron $TARGETS" exit 2 esac exit $RETVAL