2013-08-27 07:30:06 -04:00
|
|
|
#! /bin/sh
|
2013-04-22 06:44:09 -04:00
|
|
|
|
|
|
|
# GITLAB
|
|
|
|
# Maintainer: @randx
|
2013-08-27 07:30:06 -04:00
|
|
|
# Authors: rovanion.luckey@gmail.com, @randx
|
2013-08-19 15:54:12 -04:00
|
|
|
# App Version: 6.0
|
2013-04-22 06:44:09 -04:00
|
|
|
|
|
|
|
### 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 git repository management
|
|
|
|
# Description: GitLab git repository management
|
|
|
|
### END INIT INFO
|
|
|
|
|
2013-08-27 07:30:06 -04:00
|
|
|
### Environment variables
|
|
|
|
RAILS_ENV="production"
|
2013-04-22 06:44:09 -04:00
|
|
|
|
2013-08-27 07:30:06 -04:00
|
|
|
# Script variable names should be lower-case not to conflict with internal
|
|
|
|
# /bin/sh variables such as PATH, EDITOR or SHELL.
|
2013-08-28 07:16:34 -04:00
|
|
|
app_root="/home/git/gitlab"
|
|
|
|
app_user="git"
|
2013-08-27 07:30:06 -04:00
|
|
|
unicorn_conf="$app_root/config/unicorn.rb"
|
|
|
|
pid_path="$app_root/tmp/pids"
|
|
|
|
socket_path="$app_root/tmp/sockets"
|
|
|
|
web_server_pid_path="$pid_path/unicorn.pid"
|
|
|
|
sidekiq_pid_path="$pid_path/sidekiq.pid"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Here ends user configuration ###
|
|
|
|
|
|
|
|
|
|
|
|
# Switch to the app_user if it is not he/she who is running the script.
|
|
|
|
if [ "$USER" != "$app_user" ]; then
|
2013-09-06 18:53:10 -04:00
|
|
|
sudo -u "$app_user" -H -i $0 "$@"; exit;
|
2013-08-27 07:30:06 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Switch to the gitlab path, if it fails exit with an error.
|
|
|
|
if ! cd "$app_root" ; then
|
|
|
|
echo "Failed to cd into $app_root, exiting!"; exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
### Init Script functions
|
|
|
|
|
|
|
|
check_pids(){
|
|
|
|
if ! mkdir -p "$pid_path"; then
|
|
|
|
echo "Could not create the path $pid_path needed to store the pids."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
# If there exists a file which should hold the value of the Unicorn pid: read it.
|
|
|
|
if [ -f "$web_server_pid_path" ]; then
|
|
|
|
wpid=$(cat "$web_server_pid_path")
|
|
|
|
else
|
|
|
|
wpid=0
|
|
|
|
fi
|
|
|
|
if [ -f "$sidekiq_pid_path" ]; then
|
|
|
|
spid=$(cat "$sidekiq_pid_path")
|
2013-04-22 06:44:09 -04:00
|
|
|
else
|
2013-08-27 07:30:06 -04:00
|
|
|
spid=0
|
2013-04-22 06:44:09 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-08-27 07:30:06 -04:00
|
|
|
# We use the pids in so many parts of the script it makes sense to always check them.
|
|
|
|
# Only after start() is run should the pids change. Sidekiq sets it's own pid.
|
|
|
|
check_pids
|
|
|
|
|
|
|
|
|
2013-08-27 09:04:20 -04:00
|
|
|
# Checks whether the different parts of the service are already running or not.
|
2013-08-27 07:30:06 -04:00
|
|
|
check_status(){
|
|
|
|
check_pids
|
|
|
|
# If the web server is running kill -0 $wpid returns true, or rather 0.
|
|
|
|
# Checks of *_status should only check for == 0 or != 0, never anything else.
|
|
|
|
if [ $wpid -ne 0 ]; then
|
|
|
|
kill -0 "$wpid" 2>/dev/null
|
|
|
|
web_status="$?"
|
2013-08-28 07:16:34 -04:00
|
|
|
else
|
|
|
|
web_status="-1"
|
2013-08-27 07:30:06 -04:00
|
|
|
fi
|
|
|
|
if [ $spid -ne 0 ]; then
|
|
|
|
kill -0 "$spid" 2>/dev/null
|
|
|
|
sidekiq_status="$?"
|
2013-08-28 07:16:34 -04:00
|
|
|
else
|
|
|
|
sidekiq_status="-1"
|
2013-08-27 07:30:06 -04:00
|
|
|
fi
|
2013-05-09 01:37:56 -04:00
|
|
|
}
|
|
|
|
|
2013-08-27 07:30:06 -04:00
|
|
|
# Check for stale pids and remove them if necessary
|
|
|
|
check_stale_pids(){
|
|
|
|
check_status
|
|
|
|
# If there is a pid it is something else than 0, the service is running if
|
|
|
|
# *_status is == 0.
|
|
|
|
if [ "$wpid" != "0" -a "$web_status" != "0" ]; then
|
2013-08-28 07:16:34 -04:00
|
|
|
echo "Removing stale Unicorn web server pid. This is most likely caused by the web server crashing the last time it ran."
|
|
|
|
if ! rm "$web_server_pid_path"; then
|
|
|
|
echo "Unable to remove stale pid, exiting"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-27 07:30:06 -04:00
|
|
|
fi
|
|
|
|
if [ "$spid" != "0" -a "$sidekiq_status" != "0" ]; then
|
2013-08-28 07:16:34 -04:00
|
|
|
echo "Removing stale Sidekiq web server pid. This is most likely caused by the Sidekiq crashing the last time it ran."
|
|
|
|
if ! rm "$sidekiq_pid_path"; then
|
|
|
|
echo "Unable to remove stale pid, exiting"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-27 07:30:06 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# If no parts of the service is running, bail out.
|
2013-08-28 06:38:41 -04:00
|
|
|
exit_if_not_running(){
|
2013-08-27 07:30:06 -04:00
|
|
|
check_stale_pids
|
|
|
|
if [ "$web_status" != "0" -a "$sidekiq_status" != "0" ]; then
|
|
|
|
echo "GitLab is not running."
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Starts Unicorn and Sidekiq.
|
2013-04-22 06:44:09 -04:00
|
|
|
start() {
|
2013-08-27 07:30:06 -04:00
|
|
|
check_stale_pids
|
|
|
|
|
|
|
|
# Then check if the service is running. If it is: don't start again.
|
|
|
|
if [ "$web_status" = "0" ]; then
|
|
|
|
echo "The Unicorn web server already running with pid $wpid, not restarting."
|
2013-04-22 06:44:09 -04:00
|
|
|
else
|
2013-08-27 07:30:06 -04:00
|
|
|
echo "Starting the GitLab Unicorn web server..."
|
|
|
|
# Remove old socket if it exists
|
2013-08-27 09:04:20 -04:00
|
|
|
rm -f "$socket_path"/gitlab.socket 2>/dev/null
|
2013-08-27 07:30:06 -04:00
|
|
|
# Start the webserver
|
|
|
|
bundle exec unicorn_rails -D -c "$unicorn_conf" -E "$RAILS_ENV"
|
2013-04-22 06:44:09 -04:00
|
|
|
fi
|
|
|
|
|
2013-08-27 07:30:06 -04:00
|
|
|
# If sidekiq is already running, don't start it again.
|
|
|
|
if [ "$sidekiq_status" = "0" ]; then
|
|
|
|
echo "The Sidekiq job dispatcher is already running with pid $spid, not restarting"
|
2013-04-22 06:44:09 -04:00
|
|
|
else
|
2013-08-27 07:30:06 -04:00
|
|
|
echo "Starting the GitLab Sidekiq event dispatcher..."
|
|
|
|
RAILS_ENV=$RAILS_ENV bundle exec rake sidekiq:start
|
|
|
|
# We are sleeping a bit here because sidekiq is slow at writing it's pid
|
|
|
|
sleep 2
|
2013-04-22 06:44:09 -04:00
|
|
|
fi
|
2013-08-27 07:30:06 -04:00
|
|
|
|
|
|
|
# Finally check the status to tell wether or not GitLab is running
|
|
|
|
status
|
2013-04-22 06:44:09 -04:00
|
|
|
}
|
|
|
|
|
2013-08-27 07:30:06 -04:00
|
|
|
# Asks the Unicorn and the Sidekiq if they would be so kind as to stop, if not kills them.
|
|
|
|
stop() {
|
2013-08-28 06:38:41 -04:00
|
|
|
exit_if_not_running
|
2013-08-27 07:30:06 -04:00
|
|
|
# If the Unicorn web server is running, tell it to stop;
|
|
|
|
if [ "$web_status" = "0" ]; then
|
2013-10-07 07:32:33 -04:00
|
|
|
kill -QUIT "$wpid"
|
2013-08-27 07:30:06 -04:00
|
|
|
echo "Stopping the GitLab Unicorn web server..."
|
|
|
|
stopping=true
|
2013-04-22 06:44:09 -04:00
|
|
|
else
|
2013-08-27 07:30:06 -04:00
|
|
|
echo "The Unicorn web was not running, doing nothing."
|
|
|
|
fi
|
|
|
|
# And do the same thing for the Sidekiq.
|
|
|
|
if [ "$sidekiq_status" = "0" ]; then
|
|
|
|
printf "Stopping Sidekiq job dispatcher."
|
2013-10-07 07:32:33 -04:00
|
|
|
RAILS_ENV=$RAILS_ENV bundle exec rake sidekiq:stop
|
2013-08-27 07:30:06 -04:00
|
|
|
stopping=true
|
|
|
|
else
|
|
|
|
echo "The Sidekiq was not running, must have run out of breath."
|
2013-04-22 06:44:09 -04:00
|
|
|
fi
|
2013-08-27 07:30:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
# If something needs to be stopped, lets wait for it to stop. Never use SIGKILL in a script.
|
|
|
|
while [ "$stopping" = "true" ]; do
|
|
|
|
sleep 1
|
|
|
|
check_status
|
|
|
|
if [ "$web_status" = "0" -o "$sidekiq_status" = "0" ]; then
|
|
|
|
printf "."
|
|
|
|
else
|
|
|
|
printf "\n"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
sleep 1
|
|
|
|
# Cleaning up unused pids
|
|
|
|
rm "$web_server_pid_path" 2>/dev/null
|
|
|
|
# rm "$sidekiq_pid_path" # Sidekiq seems to be cleaning up it's own pid.
|
|
|
|
|
|
|
|
status
|
2013-04-22 06:44:09 -04:00
|
|
|
}
|
|
|
|
|
2013-08-27 07:30:06 -04:00
|
|
|
# Returns the status of GitLab and it's components
|
2013-04-22 06:44:09 -04:00
|
|
|
status() {
|
2013-08-29 17:26:08 -04:00
|
|
|
check_status
|
|
|
|
if [ "$web_status" != "0" -a "$sidekiq_status" != "0" ]; then
|
|
|
|
echo "GitLab is not running."
|
|
|
|
return
|
|
|
|
fi
|
2013-08-27 07:30:06 -04:00
|
|
|
if [ "$web_status" = "0" ]; then
|
|
|
|
echo "The GitLab Unicorn webserver with pid $wpid is running."
|
2013-04-22 06:44:09 -04:00
|
|
|
else
|
2013-08-27 07:30:06 -04:00
|
|
|
printf "The GitLab Unicorn webserver is \033[31mnot running\033[0m.\n"
|
|
|
|
fi
|
|
|
|
if [ "$sidekiq_status" = "0" ]; then
|
|
|
|
echo "The GitLab Sidekiq job dispatcher with pid $spid is running."
|
|
|
|
else
|
|
|
|
printf "The GitLab Sidekiq job dispatcher is \033[31mnot running\033[0m.\n"
|
|
|
|
fi
|
|
|
|
if [ "$web_status" = "0" -a "$sidekiq_status" = "0" ]; then
|
2013-09-26 14:01:22 -04:00
|
|
|
printf "GitLab and all its components are \033[32mup and running\033[0m.\n"
|
2013-04-22 06:44:09 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-08-27 07:30:06 -04:00
|
|
|
reload(){
|
2013-08-28 06:38:41 -04:00
|
|
|
exit_if_not_running
|
2013-08-27 07:30:06 -04:00
|
|
|
if [ "$wpid" = "0" ];then
|
2013-08-29 17:26:08 -04:00
|
|
|
echo "The GitLab Unicorn Web server is not running thus its configuration can't be reloaded."
|
2013-04-22 06:44:09 -04:00
|
|
|
exit 1
|
2013-08-27 07:30:06 -04:00
|
|
|
fi
|
2013-08-28 06:38:41 -04:00
|
|
|
printf "Reloading GitLab Unicorn configuration... "
|
|
|
|
kill -USR2 "$wpid"
|
2013-08-27 07:30:06 -04:00
|
|
|
echo "Done."
|
2013-08-29 17:26:08 -04:00
|
|
|
echo "Restarting GitLab Sidekiq since it isn't capable of reloading its config..."
|
2013-10-09 10:49:01 -04:00
|
|
|
RAILS_ENV=$RAILS_ENV bundle exec rake sidekiq:restart
|
2013-08-28 06:38:41 -04:00
|
|
|
# Waiting 2 seconds for sidekiq to write it.
|
|
|
|
sleep 2
|
|
|
|
status
|
2013-08-27 07:30:06 -04:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:26:08 -04:00
|
|
|
restart(){
|
|
|
|
check_status
|
|
|
|
if [ "$web_status" = "0" -o "$sidekiq_status" = "0" ]; then
|
|
|
|
stop
|
|
|
|
fi
|
|
|
|
start
|
|
|
|
}
|
|
|
|
|
2013-08-27 07:30:06 -04:00
|
|
|
|
|
|
|
## Finally the input handling.
|
2013-04-22 06:44:09 -04:00
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
start
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
stop
|
|
|
|
;;
|
|
|
|
restart)
|
2013-08-29 17:26:08 -04:00
|
|
|
restart
|
2013-04-22 06:44:09 -04:00
|
|
|
;;
|
|
|
|
reload|force-reload)
|
2013-08-27 07:30:06 -04:00
|
|
|
reload
|
2013-04-22 06:44:09 -04:00
|
|
|
;;
|
|
|
|
status)
|
|
|
|
status
|
|
|
|
;;
|
|
|
|
*)
|
2013-08-27 07:30:06 -04:00
|
|
|
echo "Usage: service gitlab {start|stop|restart|reload|status}"
|
2013-04-22 06:44:09 -04:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2013-08-27 09:04:20 -04:00
|
|
|
exit
|