1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2025-09-11 16:19:29 +00:00

Merge pull request #23 from tinkerborg/master

Fix hard coded user/group names in config manifest
This commit is contained in:
Christian Becker
2018-01-16 18:46:05 +01:00
committed by GitHub

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'],
}