1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-19 20:20:35 +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
commit 948431f50c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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