mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-12-16 13:20:35 +00:00
updated comments & README
This commit is contained in:
parent
76d26e8216
commit
0c62c616f0
20
README.md
20
README.md
@ -84,6 +84,26 @@ include '::fluentd'
|
|||||||
Defines if the service should be enabled.
|
Defines if the service should be enabled.
|
||||||
**Default:** 'true'
|
**Default:** 'true'
|
||||||
|
|
||||||
|
`config_path`
|
||||||
|
|
||||||
|
Path to configuration files
|
||||||
|
**Default:** '/etc/td-agent'
|
||||||
|
|
||||||
|
`config_dir`
|
||||||
|
|
||||||
|
Configuration directory name
|
||||||
|
**Default:** '${config_path}/conf.d'
|
||||||
|
|
||||||
|
`config_file`
|
||||||
|
|
||||||
|
Default configuration file name
|
||||||
|
**Default:** '${config_path}/td-agent.conf'
|
||||||
|
|
||||||
|
`conf_dir_manage`
|
||||||
|
|
||||||
|
Exclusively handle config files into fluentd::conf_dir. Other files not created by puppet, will be deleted
|
||||||
|
**Default:** 'false'
|
||||||
|
|
||||||
`user_manage`
|
`user_manage`
|
||||||
|
|
||||||
Defines if the user should be manage, which will add the user
|
Defines if the user should be manage, which will add the user
|
||||||
|
@ -8,9 +8,6 @@
|
|||||||
# [*repo_manage*]
|
# [*repo_manage*]
|
||||||
# Include repository to install recent fluentd (td-agent) from
|
# Include repository to install recent fluentd (td-agent) from
|
||||||
# Default: 'true'
|
# Default: 'true'
|
||||||
# [*conf_dir_manage*]
|
|
||||||
# Exclusively handle config files into fluentd::conf_dir. Other files not created by puppet, will be deleted
|
|
||||||
# Default: 'false'
|
|
||||||
# [*package_ensure*]
|
# [*package_ensure*]
|
||||||
# Package ensure
|
# Package ensure
|
||||||
# Default: 'installed'
|
# Default: 'installed'
|
||||||
@ -32,6 +29,18 @@
|
|||||||
# [*service_enable*]
|
# [*service_enable*]
|
||||||
# Defines if the service should be enabled
|
# Defines if the service should be enabled
|
||||||
# Default: 'true'
|
# Default: 'true'
|
||||||
|
# [*config_path*]
|
||||||
|
# Path to configuration files
|
||||||
|
# Default: '/etc/td-agent'
|
||||||
|
# [*config_dir*]
|
||||||
|
# Configuration directory name
|
||||||
|
# Default: '${config_path}/conf.d'
|
||||||
|
# [*config_file*]
|
||||||
|
# Default configuration file name
|
||||||
|
# Default: '${config_path}/td-agent.conf'
|
||||||
|
# [*conf_dir_manage*]
|
||||||
|
# Exclusively handle config files into fluentd::conf_dir. Other files not created by puppet, will be deleted
|
||||||
|
# Default: 'false'
|
||||||
# [*user_manage*]
|
# [*user_manage*]
|
||||||
# Defines if the user should be manage, which will add the user
|
# Defines if the user should be manage, which will add the user
|
||||||
# to groups defined in $user_groups.
|
# to groups defined in $user_groups.
|
||||||
@ -66,8 +75,8 @@ class fluentd (
|
|||||||
$service_enable = $::fluentd::params::service_enable,
|
$service_enable = $::fluentd::params::service_enable,
|
||||||
$config_path = $::fluentd::params::config_path,
|
$config_path = $::fluentd::params::config_path,
|
||||||
$conf_dir = $::fluentd::params::conf_dir,
|
$conf_dir = $::fluentd::params::conf_dir,
|
||||||
$conf_dir_manage = $::fluentd::params::conf_dir_manage,
|
|
||||||
$config_file = $::fluentd::params::config_file,
|
$config_file = $::fluentd::params::config_file,
|
||||||
|
$conf_dir_manage = $::fluentd::params::conf_dir_manage,
|
||||||
$user_manage = $::fluentd::params::user_manage,
|
$user_manage = $::fluentd::params::user_manage,
|
||||||
$user_name = $::fluentd::params::user_name,
|
$user_name = $::fluentd::params::user_name,
|
||||||
$user_group = $::fluentd::params::user_group,
|
$user_group = $::fluentd::params::user_group,
|
||||||
|
Loading…
Reference in New Issue
Block a user