Skip to content

Instantly share code, notes, and snippets.

@jverdeyen
Created September 11, 2012 21:36
Show Gist options
  • Save jverdeyen/3702245 to your computer and use it in GitHub Desktop.
Save jverdeyen/3702245 to your computer and use it in GitHub Desktop.
Gitlab Resque Worker init
#! /bin/bash
# GITLAB
# Maintainer: @joeri
### BEGIN INIT INFO
# Provides: gitlab
# Required-Start: $local_fs $remote_fs $network $syslog redis-server
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: GitLab Resque Worker start
# Description: GitLab Resque Worker start
### END INIT INFO
APP_ROOT="/home/gitlab/gitlab"
DESC="Gitlab Resque service"
RESQUE_PID="$APP_ROOT/tmp/pids/resque_worker.pid"
case "$1" in
start)
CD_TO_APP_DIR="cd $APP_ROOT"
START_RESQUE_PROCESS="./resque.sh"
echo -n "Starting $DESC: "
if [ `whoami` = root ]; then
sudo -u gitlab sh -l -c "$CD_TO_APP_DIR && $START_RESQUE_PROCESS"
else
$CD_TO_APP_DIR && $START_RESQUE_PROCESS
fi
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
kill -QUIT `cat $RESQUE_PID`
echo "$NAME."
;;
restart)
echo -n "Restarting $DESC: "
echo "$NAME."
;;
reload)
echo -n "Reloading $DESC configuration: "
echo "$NAME."
;;
*)
echo "Usage: $NAME {start|stop|restart|reload}" >&2
exit 1
;;
esac
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment