1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-20 04:30:36 +00:00
puppet-fluentd/manifests/config/file.pp
Max Wilhelm 08a27245f7 Merge branch 'master' of https://github.com/cotocisternas/puppet-fluentd
Conflicts:
	manifests/init.pp
	manifests/params.pp
	manifests/repo/apt.pp
2016-01-26 22:13:30 +01:00

37 lines
984 B
Puppet

# Configure a fluentd config file
# e.g. source, match etc.
#
define fluentd::config::file (
$ensure = present,
$priority = 50,
$content = undef,
) {
if $caller_module_name != $module_name {
fail("Use of private fluentd::config::file by ${caller_module_name}")
}
$base_name = "${title}.conf"
$config_name = "${priority}-${base_name}"
$config_path = "${::fluentd::conf_dir}/${config_name}"
# clean up to ensure priority changes take effect
exec { "apply priority change for ${base_name}":
path => '/bin:/usr/bin:/usr/local/bin',
cwd => "${::fluentd::conf_dir}",
command => "rm *-${base_name}",
onlyif => "ls *-${base_name} | grep -v ${config_name}",
before => File[$config_path],
notify => Class['Fluentd::Service'],
}
file { $config_path:
ensure => $ensure,
content => $content,
owner => 'td-agent',
group => 'td-agent',
mode => '0644',
notify => Class['Fluentd::Service'],
}
}