Commit b62947380b486e48d056f7b59632126b61b305a0
1 parent
c20ae142
Exists in
master
and in
9 other branches
Fix typo
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
files/gitlab-cookbooks/gitlab/recipes/gitlab-rails.rb
@@ -44,8 +44,8 @@ dependent_services = [] | @@ -44,8 +44,8 @@ dependent_services = [] | ||
44 | dependent_services << "service[unicorn]" if OmnibusHelper.should_notify?("unicorn") | 44 | dependent_services << "service[unicorn]" if OmnibusHelper.should_notify?("unicorn") |
45 | dependent_services << "service[sidekiq]" if OmnibusHelper.should_notify?("sidekiq") | 45 | dependent_services << "service[sidekiq]" if OmnibusHelper.should_notify?("sidekiq") |
46 | 46 | ||
47 | -redis_not_listening = OmnibusHelper.not_listening("redis") | ||
48 | -postgresql_not_listening = OmnibusHelper.not_listening("postgresql") | 47 | +redis_not_listening = OmnibusHelper.not_listening?("redis") |
48 | +postgresql_not_listening = OmnibusHelper.not_listening?("postgresql") | ||
49 | 49 | ||
50 | template_symlink File.join(gitlab_rails_etc_dir, "secret") do | 50 | template_symlink File.join(gitlab_rails_etc_dir, "secret") do |
51 | link_from File.join(gitlab_rails_source_dir, ".secret") | 51 | link_from File.join(gitlab_rails_source_dir, ".secret") |