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/script
diff options
context:
space:
mode:
authorMarin Jankovski <marin@gitlab.com>2014-05-27 19:14:41 +0400
committerMarin Jankovski <marin@gitlab.com>2014-05-27 19:14:41 +0400
commit2341cefd6fa2811a1af41f2068554738d7eebfc4 (patch)
tree807a376257151323a203c39dd2ff08b23e29a21e /script
parentcb4b504b26a269ba6ebb3fee165296a80d962c69 (diff)
Move from script to bin directory.
Diffstat (limited to 'script')
-rwxr-xr-xscript/background_jobs80
-rwxr-xr-xscript/check2
-rwxr-xr-xscript/rails6
-rw-r--r--script/upgrade.rb3
-rwxr-xr-xscript/web49
5 files changed, 0 insertions, 140 deletions
diff --git a/script/background_jobs b/script/background_jobs
deleted file mode 100755
index e0140e9689b..00000000000
--- a/script/background_jobs
+++ /dev/null
@@ -1,80 +0,0 @@
-#!/usr/bin/env bash
-
-cd $(dirname $0)/..
-app_root=$(pwd)
-sidekiq_pidfile="$app_root/tmp/pids/sidekiq.pid"
-sidekiq_logfile="$app_root/log/sidekiq.log"
-gitlab_user=$(ls -l config.ru | awk '{print $3}')
-
-function warn
-{
- echo "$@" 1>&2
-}
-
-function stop
-{
- bundle exec sidekiqctl stop $sidekiq_pidfile >> $sidekiq_logfile 2>&1
-}
-
-function killall
-{
- pkill -u $gitlab_user -f sidekiq
-}
-
-function restart
-{
- if [ -f $sidekiq_pidfile ]; then
- stop
- fi
- killall
- start_sidekiq -d -L $sidekiq_logfile
-}
-
-function start_no_deamonize
-{
- start_sidekiq
-}
-
-function start_sidekiq
-{
- bundle exec sidekiq -q post_receive -q mailer -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e $RAILS_ENV -P $sidekiq_pidfile $@ >> $sidekiq_logfile 2>&1
-}
-
-function load_ok
-{
- sidekiq_pid=$(cat $sidekiq_pidfile)
- if [[ -z $sidekiq_pid ]] ; then
- warn "Could not find a PID in $sidekiq_pidfile"
- exit 0
- fi
-
- if (ps -p $sidekiq_pid -o args | grep '\([0-9]\+\) of \1 busy' 1>&2) ; then
- warn "Too many busy Sidekiq workers"
- exit 1
- fi
-
- exit 0
-}
-
-case "$1" in
- stop)
- stop
- ;;
- start)
- restart
- ;;
- start_no_deamonize)
- start_no_deamonize
- ;;
- restart)
- restart
- ;;
- killall)
- killall
- ;;
- load_ok)
- load_ok
- ;;
- *)
- echo "Usage: RAILS_ENV=your_env $0 {stop|start|start_no_deamonize|restart|killall|load_ok}"
-esac
diff --git a/script/check b/script/check
deleted file mode 100755
index c907a98b5d9..00000000000
--- a/script/check
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
diff --git a/script/rails b/script/rails
deleted file mode 100755
index f8da2cffd4d..00000000000
--- a/script/rails
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/usr/bin/env ruby
-# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
-
-APP_PATH = File.expand_path('../../config/application', __FILE__)
-require File.expand_path('../../config/boot', __FILE__)
-require 'rails/commands'
diff --git a/script/upgrade.rb b/script/upgrade.rb
deleted file mode 100644
index a5caecf8526..00000000000
--- a/script/upgrade.rb
+++ /dev/null
@@ -1,3 +0,0 @@
-require_relative "../lib/gitlab/upgrader"
-
-Gitlab::Upgrader.new.execute
diff --git a/script/web b/script/web
deleted file mode 100755
index 1ad3b5d24b9..00000000000
--- a/script/web
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/usr/bin/env 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