Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin/web
diff options
context:
space:
mode:
authorPavel Novitskiy <altusensix@gmail.com>2014-07-04 11:45:20 +0400
committerPavel Novitskiy <altusensix@gmail.com>2014-07-04 11:45:20 +0400
commitb37247ac31b2365e8a7f557e7f6ee614d00628ea (patch)
tree4f1e3db1f2d210ab667566547c1c355a14c2ae25 /bin/web
parent83fd03f2ddb6b2fb2088bb9b3945fe13afb91320 (diff)
change bash to sh
Diffstat (limited to 'bin/web')
-rwxr-xr-xbin/web10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/web b/bin/web
index 1ad3b5d24b9..f6bacd6d784 100755
--- a/bin/web
+++ b/bin/web
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/sh
cd $(dirname $0)/..
app_root=$(pwd)
@@ -6,7 +6,7 @@ app_root=$(pwd)
unicorn_pidfile="$app_root/tmp/pids/unicorn.pid"
unicorn_config="$app_root/config/unicorn.rb"
-function get_unicorn_pid
+get_unicorn_pid()
{
local pid=$(cat $unicorn_pidfile)
if [ -z $pid ] ; then
@@ -16,18 +16,18 @@ function get_unicorn_pid
unicorn_pid=$pid
}
-function start
+start()
{
bundle exec unicorn_rails -D -c $unicorn_config -E $RAILS_ENV
}
-function stop
+stop()
{
get_unicorn_pid
kill -QUIT $unicorn_pid
}
-function reload
+reload()
{
get_unicorn_pid
kill -USR2 $unicorn_pid