mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-13 21:50:34 +00:00
added parameter validation for fluentd::match
This commit is contained in:
parent
d24781fcad
commit
8d3c272916
@ -6,6 +6,15 @@ define fluentd::match (
|
|||||||
$pattern = '',
|
$pattern = '',
|
||||||
$config = {},
|
$config = {},
|
||||||
) {
|
) {
|
||||||
|
|
||||||
|
# parameter validation
|
||||||
|
if ! ($ensure in [ 'present', 'absent' ]) {
|
||||||
|
fail('ensure parameter must be present or absent')
|
||||||
|
}
|
||||||
|
validate_integer($priority)
|
||||||
|
validate_string($pattern)
|
||||||
|
validate_hash($config)
|
||||||
|
|
||||||
fluentd::config::file { "match-${title}":
|
fluentd::config::file { "match-${title}":
|
||||||
ensure => $ensure,
|
ensure => $ensure,
|
||||||
priority => $priority,
|
priority => $priority,
|
||||||
|
Loading…
Reference in New Issue
Block a user