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

manifests/config.pp -> manifests/config/init.pp

This commit is contained in:
Max Wilhelm
2015-12-01 14:23:37 +01:00
parent 49857ddb1d
commit 51b5f0f640

19
manifests/config/init.pp Normal file
View File

@@ -0,0 +1,19 @@
# Configure package
#
class fluentd::config inherits fluentd {
file { '/etc/td-agent/td-agent.conf' :
ensure => file,
owner => 'root',
group => 'root',
source => "puppet:///modules/fluentd/td-agent.conf"
}
file {'/etc/td-agent/conf.d':
ensure => 'directory',
owner => 'td-agent',
group => 'td-agent',
mode => '0750',
}
}