mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-09 20:50:34 +00:00
Merge pull request #23 from tinkerborg/master
Fix hard coded user/group names in config manifest
This commit is contained in:
commit
948431f50c
@ -28,8 +28,8 @@ define fluentd::config::file (
|
|||||||
file { $config_path:
|
file { $config_path:
|
||||||
ensure => $ensure,
|
ensure => $ensure,
|
||||||
content => $content,
|
content => $content,
|
||||||
owner => 'td-agent',
|
owner => $::fluentd::user_name,
|
||||||
group => 'td-agent',
|
group => $::fluentd::user_group,
|
||||||
mode => '0644',
|
mode => '0644',
|
||||||
notify => Class['Fluentd::Service'],
|
notify => Class['Fluentd::Service'],
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user