Puppet Class: bsdauth::unbound
- Inherits:
- ::bsdauth::params
- Defined in:
- manifests/unbound.pp
Overview
Manages the unbound login class.
13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'manifests/unbound.pp', line 13
class bsdauth::unbound (
Hash[String, Any] $attributes = $::bsdauth::params::unbound_attributes,
) inherits ::bsdauth::params {
if ! defined(Class['::bsdauth']) {
fail('You must include the bsdauth base class before using the bsdauth::unbound class')
}
::bsdauth::class { 'unbound':
* => $attributes,
}
}
|