summaryrefslogtreecommitdiff
path: root/script/web
diff options
context:
space:
mode:
authorGitLab <devaroop123@yahoo.co.in>2014-02-06 19:47:21 +0530
committerGitLab <devaroop123@yahoo.co.in>2014-02-06 19:47:21 +0530
commitb1492a2a627d1fe51f5cdd5423169247a188f7e4 (patch)
treedf6956064d849616c20d2014b0a23412bdb702a5 /script/web
parent1c9a41e0d5cac3ee937555ae4189ecd1ad597004 (diff)
parent319f355aeda3fa67c1bc4451c4db5787090ab8af (diff)
downloadgitlab-ce-b1492a2a627d1fe51f5cdd5423169247a188f7e4.tar.gz
sync with upstream for ease to merge
Diffstat (limited to 'script/web')
-rwxr-xr-xscript/web49
1 files changed, 49 insertions, 0 deletions
diff --git a/script/web b/script/web
new file mode 100755
index 00000000000..5464ed040aa
--- /dev/null
+++ b/script/web
@@ -0,0 +1,49 @@
+#!/bin/bash
+
+cd $(dirname $0)/..
+app_root=$(pwd)
+
+unicorn_pidfile="$app_root/tmp/pids/unicorn.pid"
+unicorn_config="$app_root/config/unicorn.rb"
+
+function get_unicorn_pid
+{
+ local pid=$(cat $unicorn_pidfile)
+ if [ -z $pid ] ; then
+ echo "Could not find a PID in $unicorn_pidfile"
+ exit 1
+ fi
+ unicorn_pid=$pid
+}
+
+function start
+{
+ bundle exec unicorn_rails -D -c $unicorn_config -E $RAILS_ENV
+}
+
+function stop
+{
+ get_unicorn_pid
+ kill -QUIT $unicorn_pid
+}
+
+function reload
+{
+ get_unicorn_pid
+ kill -USR2 $unicorn_pid
+}
+
+case "$1" in
+ start)
+ start
+ ;;
+ stop)
+ stop
+ ;;
+ reload)
+ reload
+ ;;
+ *)
+ echo "Usage: RAILS_ENV=your_env $0 {start|stop|reload}"
+ ;;
+esac