Commit 60033750ac56ec4ed6bb2ec9114d80b489e9c716
1 parent
4701e9cf
Exists in
master
and in
17 other branches
Fix syntax error
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
files/gitlab-cookbooks/gitlab/definitions/template_symlink.rb
... | ... | @@ -19,7 +19,7 @@ define :template_symlink, :link_from => nil, :source => nil, :owner => nil, :gro |
19 | 19 | template params[:name] do |
20 | 20 | source params[:source] |
21 | 21 | owner params[:owner] |
22 | - group params:group] | |
22 | + group params[:group] | |
23 | 23 | mode params[:mode] |
24 | 24 | variables params[:variables] |
25 | 25 | notifies *params[:notifies] if params[:notifies] | ... | ... |