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

gitlab - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/gitlab
blob: acafb3f10c44f92c0fab3ff83f7bda01255baf63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env ruby

class GitlabCli
  def initialize
    @path = File.dirname(__FILE__)
    @command = ARGV.shift
    @mode = ARGV.shift
  end

  def execute
    case @command
    when 'start' then start
    when 'stop' then stop
    else
      puts "-- Usage gitlab start production or gitlab stop development"
    end
  end

  private

  def start
    case @mode
    when 'production';
      system(unicorn_start_cmd)
      system(resque_start_cmd)
    else
      system(rails_start_cmd)
      system(resque_dev_start_cmd)
    end
  end

  def stop
    case @mode
    when 'production';
      system(unicorn_stop_cmd)
    else
      system(rails_stop_cmd)
    end
    system(resque_stop_cmd)
  end

  def rails_start_cmd
    "bundle exec rails s -d"
  end

  def rails_stop_cmd
    pid = File.join(@path, "tmp/pids/server.pid")
    "kill -QUIT `cat #{pid}`"
  end

  def unicorn_start_cmd
    unicorn_conf  = File.join(@path, "config/unicorn.rb")
    "bundle exec unicorn_rails -c #{unicorn_conf} -E production -D"
  end

  def unicorn_stop_cmd
    pid = File.join(@path, "/tmp/pids/unicorn.pid")
    "kill -QUIT `cat #{pid}`"
  end

  def resque_dev_start_cmd
    "./resque_dev.sh > /dev/null 2>&1"
  end

  def resque_start_cmd
    "./resque.sh > /dev/null 2>&1"
  end

  def resque_stop_cmd
    pid = File.join(@path, "tmp/pids/resque_worker.pid")
    "kill -QUIT `cat #{pid}`"
  end
end

GitlabCli.new.execute