Commit cda4d688 authored by Rovanion's avatar Rovanion Committed by GitLab

Fixed failure to stop and added handling of failure to remove stale pid

parent f57944cc
...@@ -20,8 +20,8 @@ RAILS_ENV="production" ...@@ -20,8 +20,8 @@ RAILS_ENV="production"
# Script variable names should be lower-case not to conflict with internal # Script variable names should be lower-case not to conflict with internal
# /bin/sh variables such as PATH, EDITOR or SHELL. # /bin/sh variables such as PATH, EDITOR or SHELL.
app_root="/home/gitlab/gitlab" app_root="/home/git/gitlab"
app_user="gitlab" app_user="git"
unicorn_conf="$app_root/config/unicorn.rb" unicorn_conf="$app_root/config/unicorn.rb"
pid_path="$app_root/tmp/pids" pid_path="$app_root/tmp/pids"
socket_path="$app_root/tmp/sockets" socket_path="$app_root/tmp/sockets"
...@@ -76,10 +76,14 @@ check_status(){ ...@@ -76,10 +76,14 @@ check_status(){
if [ $wpid -ne 0 ]; then if [ $wpid -ne 0 ]; then
kill -0 "$wpid" 2>/dev/null kill -0 "$wpid" 2>/dev/null
web_status="$?" web_status="$?"
else
web_status="-1"
fi fi
if [ $spid -ne 0 ]; then if [ $spid -ne 0 ]; then
kill -0 "$spid" 2>/dev/null kill -0 "$spid" 2>/dev/null
sidekiq_status="$?" sidekiq_status="$?"
else
sidekiq_status="-1"
fi fi
} }
...@@ -89,12 +93,18 @@ check_stale_pids(){ ...@@ -89,12 +93,18 @@ check_stale_pids(){
# If there is a pid it is something else than 0, the service is running if # If there is a pid it is something else than 0, the service is running if
# *_status is == 0. # *_status is == 0.
if [ "$wpid" != "0" -a "$web_status" != "0" ]; then if [ "$wpid" != "0" -a "$web_status" != "0" ]; then
echo "Found stale Unicorn web server pid, removing. This is most likely caused by the web server crashing the last time it ran." echo "Removing stale Unicorn web server pid. This is most likely caused by the web server crashing the last time it ran."
rm "$web_server_pid_path" if ! rm "$web_server_pid_path"; then
echo "Unable to remove stale pid, exiting"
exit 1
fi
fi fi
if [ "$spid" != "0" -a "$sidekiq_status" != "0" ]; then if [ "$spid" != "0" -a "$sidekiq_status" != "0" ]; then
echo "Found stale Sidekiq web server pid, removing. This is most likely caused by the Sidekiq crashing the last time it ran." echo "Removing stale Sidekiq web server pid. This is most likely caused by the Sidekiq crashing the last time it ran."
rm "$sidekiq_pid_path" if ! rm "$sidekiq_pid_path"; then
echo "Unable to remove stale pid, exiting"
exit 1
fi
fi fi
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment