Skip to content

Commit

Permalink
Merge pull request #3697 from fretb/bug/logrotate-defaults
Browse files Browse the repository at this point in the history
Fixes redis-lb logrotate file creation ownership
  • Loading branch information
johnmccrae authored Oct 17, 2023
2 parents 04051da + a312614 commit 9d44269
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@
owner 'root'
group 'root'
mode '0644'
variables(redis.to_hash)
variables(redis.to_hash.merge(
'owner' => OmnibusHelper.new(node).ownership['owner'],
'group' => OmnibusHelper.new(node).ownership['group']
))
end

#
Expand Down

0 comments on commit 9d44269

Please sign in to comment.