2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
module SystemCheck
|
|
|
|
module App
|
|
|
|
class TmpWritableCheck < SystemCheck::BaseCheck
|
|
|
|
set_name 'Tmp directory writable?'
|
|
|
|
|
|
|
|
def check?
|
|
|
|
File.writable?(tmp_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_error
|
|
|
|
try_fixing_it(
|
|
|
|
"sudo chown -R gitlab #{tmp_path}",
|
|
|
|
"sudo chmod -R u+rwX #{tmp_path}"
|
|
|
|
)
|
|
|
|
for_more_information(
|
2020-04-22 19:07:51 +05:30
|
|
|
see_installation_guide_section('GitLab')
|
2017-09-10 17:25:29 +05:30
|
|
|
)
|
|
|
|
fix_and_rerun
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def tmp_path
|
|
|
|
Rails.root.join('tmp')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|