diff --git a/files/gitlab-cookbooks/gitlab/libraries/gitlab.rb b/files/gitlab-cookbooks/gitlab/libraries/gitlab.rb index 353c6bc..fe8ea3f 100644 --- a/files/gitlab-cookbooks/gitlab/libraries/gitlab.rb +++ b/files/gitlab-cookbooks/gitlab/libraries/gitlab.rb @@ -31,6 +31,7 @@ module Gitlab gitlab_rails Mash.new unicorn Mash.new sidekiq Mash.new + nginx Mash.new node nil class << self @@ -79,6 +80,7 @@ module Gitlab "gitlab_rails", "unicorn", "sidekiq", + "nginx", "postgresql" ].each do |key| rkey = key.gsub('_', '-') diff --git a/files/gitlab-cookbooks/gitlab/recipes/default.rb b/files/gitlab-cookbooks/gitlab/recipes/default.rb index d6d7291..462c20c 100644 --- a/files/gitlab-cookbooks/gitlab/recipes/default.rb +++ b/files/gitlab-cookbooks/gitlab/recipes/default.rb @@ -69,6 +69,7 @@ include_recipe "runit" "postgresql", # Postgresql depends on Redis because of `rake db:seed_fu` "unicorn", "sidekiq", + "nginx" "bootstrap", ].each do |service| if node["gitlab"][service]["enable"] -- libgit2 0.21.2