1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-19 20:20:35 +00:00

Fix hard coded user/group names in config manifest

This commit is contained in:
tinkerborg 2018-01-12 15:27:53 -05:00
parent 71352ea6b1
commit 344453c241

View File

@ -28,8 +28,8 @@ define fluentd::config::file (
file { $config_path:
ensure => $ensure,
content => $content,
owner => 'td-agent',
group => 'td-agent',
owner => $::fluentd::user_name,
group => $::fluentd::user_group,
mode => '0644',
notify => Class['Fluentd::Service'],
}