diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2016-01-14 15:08:15 +0100 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2016-01-14 15:08:15 +0100 |
commit | 66f28577adc8fef997913cd05ae5884777010cb5 (patch) | |
tree | 1f0d434db87c01f1a2e094b136b5d8327d7f10fd /bin/web | |
parent | e85faec90e555a79588e185d81403ab371b4924f (diff) | |
download | gitlab-ce-66f28577adc8fef997913cd05ae5884777010cb5.tar.gz |
Improve bin/ launchers
Diffstat (limited to 'bin/web')
-rwxr-xr-x | bin/web | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -5,6 +5,7 @@ app_root=$(pwd) unicorn_pidfile="$app_root/tmp/pids/unicorn.pid" unicorn_config="$app_root/config/unicorn.rb" +unicorn_cmd="bundle exec unicorn_rails -c $unicorn_config -E $RAILS_ENV" get_unicorn_pid() { @@ -18,7 +19,12 @@ get_unicorn_pid() start() { - bundle exec unicorn_rails -D -c $unicorn_config -E $RAILS_ENV + $unicorn_cmd -D +} + +start_foreground() +{ + $unicorn_cmd } stop() @@ -37,6 +43,9 @@ case "$1" in start) start ;; + start_foreground) + start_foreground + ;; stop) stop ;; |