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

init_script_up_to_date_check.rb « app « system_check « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28c1451b8d2f330a906c9c0346eb5855ee6653a1 (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
module SystemCheck
  module App
    class InitScriptUpToDateCheck < SystemCheck::BaseCheck
      SCRIPT_PATH = '/etc/init.d/gitlab'.freeze

      set_name 'Init script up-to-date?'
      set_skip_reason 'skipped (omnibus-gitlab has no init script)'

      def skip?
        omnibus_gitlab?
      end

      def multi_check
        recipe_path = Rails.root.join('lib/support/init.d/', 'gitlab')

        unless File.exist?(SCRIPT_PATH)
          puts "can't check because of previous errors".color(:magenta)
          return
        end

        recipe_content = File.read(recipe_path)
        script_content = File.read(SCRIPT_PATH)

        if recipe_content == script_content
          puts 'yes'.color(:green)
        else
          puts 'no'.color(:red)
          show_error
        end
      end


      def show_error
        try_fixing_it(
          'Re-download the init script'
        )
        for_more_information(
          see_installation_guide_section 'Install Init Script'
        )
        fix_and_rerun
      end
    end
  end
end