Commit cbaedbf4 authored by Kirill Smelkov's avatar Kirill Smelkov

NXD gitlab:app:check : Don't check for init script

Like Omnibus, SlapOS version does not have init script - nothing to
check here.
parent 516a1f56
......@@ -147,6 +147,9 @@ namespace :gitlab do
def check_init_script_exists
print "Init script exists? ... "
puts 'skipped (slapos version has no init script)'.magenta
return
if omnibus_gitlab?
puts 'skipped (omnibus-gitlab has no init script)'.magenta
return
......@@ -171,6 +174,9 @@ namespace :gitlab do
def check_init_script_up_to_date
print "Init script up-to-date? ... "
puts 'skipped (slapos version has no init script)'.magenta
return
if omnibus_gitlab?
puts 'skipped (omnibus-gitlab has no init script)'.magenta
return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment