summaryrefslogtreecommitdiff
path: root/lib/system_check/app/log_writable_check.rb
blob: e26ad143eb82a8827e9ee819a1af19ce493938ad (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
# frozen_string_literal: true

module SystemCheck
  module App
    class LogWritableCheck < SystemCheck::BaseCheck
      set_name 'Log directory writable?'

      def check?
        File.writable?(log_path)
      end

      def show_error
        try_fixing_it(
          "sudo chown -R gitlab #{log_path}",
          "sudo chmod -R u+rwX #{log_path}"
        )
        for_more_information(
          see_installation_guide_section 'GitLab'
        )
        fix_and_rerun
      end

      private

      def log_path
        Rails.root.join('log')
      end
    end
  end
end