BigW Consortium Gitlab

log_writable_check.rb 547 Bytes
Newer Older
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
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