Commit d385129f29c176b11322fcf2cce4ff541c1185f7
1 parent
1c735050
Exists in
master
and in
17 other branches
Fix copy-paste error in gitlab-core recipe
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
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 |