From 344453c24109b2fa5edaf9eadda0bfc5cdc3c9e3 Mon Sep 17 00:00:00 2001 From: tinkerborg Date: Fri, 12 Jan 2018 15:27:53 -0500 Subject: [PATCH] Fix hard coded user/group names in config manifest --- manifests/config/file.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/config/file.pp b/manifests/config/file.pp index 36fa65b..e374a32 100644 --- a/manifests/config/file.pp +++ b/manifests/config/file.pp @@ -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'], }