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 InitScriptExistsCheck < SystemCheck::BaseCheck
|
|
|
|
set_name 'Init script exists?'
|
|
|
|
set_skip_reason 'skipped (omnibus-gitlab has no init script)'
|
|
|
|
|
|
|
|
def skip?
|
|
|
|
omnibus_gitlab?
|
|
|
|
end
|
|
|
|
|
|
|
|
def check?
|
|
|
|
script_path = '/etc/init.d/gitlab'
|
|
|
|
File.exist?(script_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_error
|
|
|
|
try_fixing_it(
|
|
|
|
'Install the init script'
|
|
|
|
)
|
|
|
|
for_more_information(
|
2020-04-22 19:07:51 +05:30
|
|
|
see_installation_guide_section('Install Init Script')
|
2017-09-10 17:25:29 +05:30
|
|
|
)
|
|
|
|
fix_and_rerun
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|