Commit e09a8b656ff2a16eaf183bffdcf2a537e9f99723

Authored by Jacob Vosmaer
1 parent 1ac8ea99
Exists in master

Use the correct attribute for the web-server group

files/gitlab-cookbooks/gitlab/recipes/gitlab-rails.rb
... ... @@ -49,7 +49,7 @@ end
49 49  
50 50 directory gitlab_rails_public_uploads_dir do
51 51 owner node['gitlab']['user']['username']
52   - group node['gitlab']['web-server']['username']
  52 + group node['gitlab']['web-server']['group']
53 53 mode '0750'
54 54 recursive true
55 55 end
... ...
files/gitlab-cookbooks/gitlab/recipes/unicorn.rb
... ... @@ -38,7 +38,7 @@ end
38 38  
39 39 directory unicorn_socket_dir do
40 40 owner node['gitlab']['user']['username']
41   - group node['gitlab']['web-server']['username']
  41 + group node['gitlab']['web-server']['group']
42 42 mode '0750'
43 43 recursive true
44 44 end
... ...