| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 | 
							- #!/bin/sh -e
 
- # =========================================================
 
- #  celerybeat - Starts the Celery periodic task scheduler.
 
- # =========================================================
 
- #
 
- # :Usage: /etc/init.d/celerybeat {start|stop|force-reload|restart|try-restart|status}
 
- # :Configuration file: /etc/default/celerybeat or /etc/default/celeryd
 
- #
 
- # See http://docs.celeryproject.org/en/latest/tutorials/daemonizing.html#generic-init-scripts
 
- ### BEGIN INIT INFO
 
- # Provides:          celerybeat
 
- # Required-Start:    $network $local_fs $remote_fs
 
- # Required-Stop:     $network $local_fs $remote_fs
 
- # Default-Start:     2 3 4 5
 
- # Default-Stop:      0 1 6
 
- # Short-Description: celery periodic task scheduler
 
- ### END INIT INFO
 
- # Cannot use set -e/bash -e since the kill -0 command will abort
 
- # abnormally in the absence of a valid process ID.
 
- #set -e
 
- VERSION=10.1
 
- echo "celery init v${VERSION}."
 
- if [ $(id -u) -ne 0 ]; then
 
-     echo "Error: This program can only be used by the root user."
 
-     echo "       Unpriviliged users must use 'celery beat --detach'"
 
-     exit 1
 
- fi
 
- # May be a runlevel symlink (e.g. S02celeryd)
 
- if [ -L "$0" ]; then
 
-     SCRIPT_FILE=$(readlink "$0")
 
- else
 
-     SCRIPT_FILE="$0"
 
- fi
 
- SCRIPT_NAME="$(basename "$SCRIPT_FILE")"
 
- # /etc/init.d/celerybeat: start and stop the celery periodic task scheduler daemon.
 
- # Make sure executable configuration script is owned by root
 
- _config_sanity() {
 
-     local path="$1"
 
-     local owner=$(ls -ld "$path" | awk '{print $3}')
 
-     local iwgrp=$(ls -ld "$path" | cut -b 6)
 
-     local iwoth=$(ls -ld "$path" | cut -b 9)
 
-     if [ "$(id -u $owner)" != "0" ]; then
 
-         echo "Error: Config script '$path' must be owned by root!"
 
-         echo
 
-         echo "Resolution:"
 
-         echo "Review the file carefully and make sure it has not been "
 
-         echo "modified with mailicious intent.  When sure the "
 
-         echo "script is safe to execute with superuser privileges "
 
-         echo "you can change ownership of the script:"
 
-         echo "    $ sudo chown root '$path'"
 
-         exit 1
 
-     fi
 
-     if [ "$iwoth" != "-" ]; then  # S_IWOTH
 
-         echo "Error: Config script '$path' cannot be writable by others!"
 
-         echo
 
-         echo "Resolution:"
 
-         echo "Review the file carefully and make sure it has not been "
 
-         echo "modified with malicious intent.  When sure the "
 
-         echo "script is safe to execute with superuser privileges "
 
-         echo "you can change the scripts permissions:"
 
-         echo "    $ sudo chmod 640 '$path'"
 
-         exit 1
 
-     fi
 
-     if [ "$iwgrp" != "-" ]; then  # S_IWGRP
 
-         echo "Error: Config script '$path' cannot be writable by group!"
 
-         echo
 
-         echo "Resolution:"
 
-         echo "Review the file carefully and make sure it has not been "
 
-         echo "modified with malicious intent.  When sure the "
 
-         echo "script is safe to execute with superuser privileges "
 
-         echo "you can change the scripts permissions:"
 
-         echo "    $ sudo chmod 640 '$path'"
 
-         exit 1
 
-     fi
 
- }
 
- scripts=""
 
- if test -f /etc/default/celeryd; then
 
-     scripts="/etc/default/celeryd"
 
-     _config_sanity /etc/default/celeryd
 
-     . /etc/default/celeryd
 
- fi
 
- EXTRA_CONFIG="/etc/default/${SCRIPT_NAME}"
 
- if test -f "$EXTRA_CONFIG"; then
 
-     scripts="$scripts, $EXTRA_CONFIG"
 
-     _config_sanity "$EXTRA_CONFIG"
 
-     . "$EXTRA_CONFIG"
 
- fi
 
- echo "Using configuration: $scripts"
 
- CELERY_BIN=${CELERY_BIN:-"celery"}
 
- DEFAULT_USER="celery"
 
- DEFAULT_PID_FILE="/var/run/celery/beat.pid"
 
- DEFAULT_LOG_FILE="/var/log/celery/beat.log"
 
- DEFAULT_LOG_LEVEL="INFO"
 
- DEFAULT_CELERYBEAT="$CELERY_BIN beat"
 
- CELERYBEAT=${CELERYBEAT:-$DEFAULT_CELERYBEAT}
 
- CELERYBEAT_LOG_LEVEL=${CELERYBEAT_LOG_LEVEL:-${CELERYBEAT_LOGLEVEL:-$DEFAULT_LOG_LEVEL}}
 
- # Sets --app argument for CELERY_BIN
 
- CELERY_APP_ARG=""
 
- if [ ! -z "$CELERY_APP" ]; then
 
-     CELERY_APP_ARG="--app=$CELERY_APP"
 
- fi
 
- CELERYBEAT_USER=${CELERYBEAT_USER:-${CELERYD_USER:-$DEFAULT_USER}}
 
- # Set CELERY_CREATE_DIRS to always create log/pid dirs.
 
- CELERY_CREATE_DIRS=${CELERY_CREATE_DIRS:-0}
 
- CELERY_CREATE_RUNDIR=$CELERY_CREATE_DIRS
 
- CELERY_CREATE_LOGDIR=$CELERY_CREATE_DIRS
 
- if [ -z "$CELERYBEAT_PID_FILE" ]; then
 
-     CELERYBEAT_PID_FILE="$DEFAULT_PID_FILE"
 
-     CELERY_CREATE_RUNDIR=1
 
- fi
 
- if [ -z "$CELERYBEAT_LOG_FILE" ]; then
 
-     CELERYBEAT_LOG_FILE="$DEFAULT_LOG_FILE"
 
-     CELERY_CREATE_LOGDIR=1
 
- fi
 
- export CELERY_LOADER
 
- CELERYBEAT_OPTS="$CELERYBEAT_OPTS -f $CELERYBEAT_LOG_FILE -l $CELERYBEAT_LOG_LEVEL"
 
- if [ -n "$2" ]; then
 
-     CELERYBEAT_OPTS="$CELERYBEAT_OPTS $2"
 
- fi
 
- CELERYBEAT_LOG_DIR=`dirname $CELERYBEAT_LOG_FILE`
 
- CELERYBEAT_PID_DIR=`dirname $CELERYBEAT_PID_FILE`
 
- # Extra start-stop-daemon options, like user/group.
 
- CELERYBEAT_CHDIR=${CELERYBEAT_CHDIR:-$CELERYD_CHDIR}
 
- if [ -n "$CELERYBEAT_CHDIR" ]; then
 
-     DAEMON_OPTS="$DAEMON_OPTS --workdir=$CELERYBEAT_CHDIR"
 
- fi
 
- export PATH="${PATH:+$PATH:}/usr/sbin:/sbin"
 
- check_dev_null() {
 
-     if [ ! -c /dev/null ]; then
 
-         echo "/dev/null is not a character device!"
 
-         exit 75  # EX_TEMPFAIL
 
-     fi
 
- }
 
- maybe_die() {
 
-     if [ $? -ne 0 ]; then
 
-         echo "Exiting: $*"
 
-         exit 77  # EX_NOPERM
 
-     fi
 
- }
 
- create_default_dir() {
 
-     if [ ! -d "$1" ]; then
 
-         echo "- Creating default directory: '$1'"
 
-         mkdir -p "$1"
 
-         maybe_die "Couldn't create directory $1"
 
-         echo "- Changing permissions of '$1' to 02755"
 
-         chmod 02755 "$1"
 
-         maybe_die "Couldn't change permissions for $1"
 
-         if [ -n "$CELERYBEAT_USER" ]; then
 
-             echo "- Changing owner of '$1' to '$CELERYBEAT_USER'"
 
-             chown "$CELERYBEAT_USER" "$1"
 
-             maybe_die "Couldn't change owner of $1"
 
-         fi
 
-         if [ -n "$CELERYBEAT_GROUP" ]; then
 
-             echo "- Changing group of '$1' to '$CELERYBEAT_GROUP'"
 
-             chgrp "$CELERYBEAT_GROUP" "$1"
 
-             maybe_die "Couldn't change group of $1"
 
-         fi
 
-     fi
 
- }
 
- check_paths() {
 
-     if [ $CELERY_CREATE_LOGDIR -eq 1 ]; then
 
-         create_default_dir "$CELERYBEAT_LOG_DIR"
 
-     fi
 
-     if [ $CELERY_CREATE_RUNDIR -eq 1 ]; then
 
-         create_default_dir "$CELERYBEAT_PID_DIR"
 
-     fi
 
- }
 
- create_paths () {
 
-     create_default_dir "$CELERYBEAT_LOG_DIR"
 
-     create_default_dir "$CELERYBEAT_PID_DIR"
 
- }
 
- wait_pid () {
 
-     pid=$1
 
-     forever=1
 
-     i=0
 
-     while [ $forever -gt 0 ]; do
 
-         kill -0 $pid 1>/dev/null 2>&1
 
-         if [ $? -eq 1 ]; then
 
-             echo "OK"
 
-             forever=0
 
-         else
 
-             kill -TERM "$pid"
 
-             i=$((i + 1))
 
-             if [ $i -gt 60 ]; then
 
-                 echo "ERROR"
 
-                 echo "Timed out while stopping (30s)"
 
-                 forever=0
 
-             else
 
-                 sleep 0.5
 
-             fi
 
-         fi
 
-     done
 
- }
 
- stop_beat () {
 
-     echo -n "Stopping ${SCRIPT_NAME}... "
 
-     if [ -f "$CELERYBEAT_PID_FILE" ]; then
 
-         wait_pid $(cat "$CELERYBEAT_PID_FILE")
 
-     else
 
-         echo "NOT RUNNING"
 
-     fi
 
- }
 
- _chuid () {
 
-     su "$CELERYBEAT_USER" -c "$CELERYBEAT $*"
 
- }
 
- start_beat () {
 
-     echo "Starting ${SCRIPT_NAME}..."
 
-     _chuid $CELERY_APP_ARG $CELERYBEAT_OPTS $DAEMON_OPTS --detach \
 
-                 --pidfile="$CELERYBEAT_PID_FILE"
 
- }
 
- check_status () {
 
-     local failed=
 
-     local pid_file=$CELERYBEAT_PID_FILE
 
-     if [ ! -e $pid_file ]; then
 
-         echo "${SCRIPT_NAME} is down: no pid file found"
 
-         failed=true
 
-     elif [ ! -r $pid_file ]; then
 
-         echo "${SCRIPT_NAME} is in unknown state, user cannot read pid file."
 
-         failed=true
 
-     else
 
-         local pid=`cat "$pid_file"`
 
-         local cleaned_pid=`echo "$pid" | sed -e 's/[^0-9]//g'`
 
-         if [ -z "$pid" ] || [ "$cleaned_pid" != "$pid" ]; then
 
-             echo "${SCRIPT_NAME}: bad pid file ($pid_file)"
 
-             failed=true
 
-         else
 
-             local failed=
 
-             kill -0 $pid 2> /dev/null || failed=true
 
-             if [ "$failed" ]; then
 
-                 echo "${SCRIPT_NAME} (pid $pid) is down, but pid file exists!"
 
-                 failed=true
 
-             else
 
-                 echo "${SCRIPT_NAME} (pid $pid) is up..."
 
-             fi
 
-         fi
 
-     fi
 
-     [ "$failed" ] && exit 1 || exit 0
 
- }
 
- case "$1" in
 
-     start)
 
-         check_dev_null
 
-         check_paths
 
-         start_beat
 
-     ;;
 
-     stop)
 
-         check_paths
 
-         stop_beat
 
-     ;;
 
-     reload|force-reload)
 
-         echo "Use start+stop"
 
-     ;;
 
-     status)
 
-         check_status
 
-     ;;
 
-     restart)
 
-         echo "Restarting celery periodic task scheduler"
 
-         check_paths
 
-         stop_beat
 
-         check_dev_null
 
-         start_beat
 
-     ;;
 
-     create-paths)
 
-         check_dev_null
 
-         create_paths
 
-     ;;
 
-     check-paths)
 
-         check_dev_null
 
-         check_paths
 
-     ;;
 
-     *)
 
-         echo "Usage: /etc/init.d/${SCRIPT_NAME} {start|stop|restart|create-paths|status}"
 
-         exit 64  # EX_USAGE
 
-     ;;
 
- esac
 
- exit 0
 
 
  |