Commit d385129f29c176b11322fcf2cce4ff541c1185f7

Authored by Jacob Vosmaer
1 parent 1c735050

Fix copy-paste error in gitlab-core recipe

files/gitlab-cookbooks/gitlab/recipes/gitlab-core.rb
@@ -82,8 +82,8 @@ link "/opt/gitlab/embedded/service/gitlab-core/config/gitlab.yml" do @@ -82,8 +82,8 @@ link "/opt/gitlab/embedded/service/gitlab-core/config/gitlab.yml" do
82 end 82 end
83 83
84 directory node['gitlab']['gitlab-core']['satellites_path'] do 84 directory node['gitlab']['gitlab-core']['satellites_path'] do
85 - owner git_user  
86 - group git_group 85 + owner node['gitlab']['user']['username']
  86 + group node['gitlab']['user']['group']
87 recursive true 87 recursive true
88 end 88 end
89 89