mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
14 lines
271 B
ObjectPascal
14 lines
271 B
ObjectPascal
|
# Configure a fluentd source
|
||
|
#
|
||
|
define fluentd::source (
|
||
|
$ensure = present,
|
||
|
$priority = 10,
|
||
|
$config = {},
|
||
|
) {
|
||
|
fluentd::config::file { "source-${title}":
|
||
|
ensure => $ensure,
|
||
|
priority => $priority,
|
||
|
content => template( 'fluentd/source.erb'),
|
||
|
}
|
||
|
}
|