Puppet Class: tcpwrappers::allows
- Defined in:
- manifests/allows.pp
Summary
Class which when included uses either the rules parameter or merged data from lookup to create tcpwrappers concat fragments.Overview
Class tcpwrappers::allows
Class which when included uses either the rules parameter or merged data from lookup to create tcpwrappers concat fragments.
23 24 25 26 27 28 29 30 31 32 33 |
# File 'manifests/allows.pp', line 23
class tcpwrappers::allows (
Hash $rules = {},
) {
include tcpwrappers
$rules.each |String $key, Hash $attrs| {
tcpwrappers::allow { $key:
* => $attrs,
}
}
}
|