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

systemd_unit_files_or_init_script_exist_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: b2f059d212b0a33779f4aa99f308fa669de1b5d6 (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
# frozen_string_literal: true

module SystemCheck
  module App
    class SystemdUnitFilesOrInitScriptExistCheck < SystemCheck::BaseCheck
      set_name 'Systemd unit files or init script exist?'
      set_skip_reason 'skipped (omnibus-gitlab has neither init script nor systemd units)'

      def skip?
        omnibus_gitlab?
      end

      def check?
        unit_paths = [
          '/usr/local/lib/systemd/system/gitlab-gitaly.service',
          '/usr/local/lib/systemd/system/gitlab-mailroom.service',
          '/usr/local/lib/systemd/system/gitlab-puma.service',
          '/usr/local/lib/systemd/system/gitlab-sidekiq.service',
          '/usr/local/lib/systemd/system/gitlab.slice',
          '/usr/local/lib/systemd/system/gitlab.target',
          '/usr/local/lib/systemd/system/gitlab-workhorse.service'
        ]
        script_path = '/etc/init.d/gitlab'

        unit_paths.all? { |s| File.exist?(s) } || File.exist?(script_path)
      end

      def show_error
        try_fixing_it(
          'Install the Service'
        )
        for_more_information(
          see_installation_guide_section('Install the Service')
        )
        fix_and_rerun
      end
    end
  end
end