Don't check if MailRoom is running on Omnibus

This commit is contained in:
Douwe Maan 2017-06-09 10:17:49 -05:00
parent ce37a209c6
commit f1e4376fb9
2 changed files with 8 additions and 5 deletions

View File

@ -0,0 +1,4 @@
---
title: Don't check if MailRoom is running on Omnibus
merge_request:
author:

View File

@ -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"