Commit 16063496 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'dm-mail-room-check-without-omnibus' into 'master'

Don't check if MailRoom is running on Omnibus

Closes #19607

See merge request !12056
parents e4038cb5 f1e4376f
---
title: Don't check if MailRoom is running on Omnibus
merge_request:
author:
......@@ -336,12 +336,9 @@ namespace :gitlab do
########################
def check_initd_configured_correctly
print "Init.d configured correctly? ... "
return if omnibus_gitlab?
if omnibus_gitlab?
puts 'skipped (omnibus-gitlab has no init script)'.color(:magenta)
return
end
print "Init.d configured correctly? ... "
path = "/etc/default/gitlab"
......@@ -379,6 +376,8 @@ namespace :gitlab do
end
def check_mail_room_running
return if omnibus_gitlab?
print "MailRoom running? ... "
path = "/etc/default/gitlab"
......
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