Puppet Class: bsdauth::skey
- Inherits:
- ::bsdauth::params
- Defined in:
- manifests/skey.pp
Overview
Manages S/Key profiles.
12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/skey.pp', line 12
class bsdauth::skey (
Stdlib::Absolutepath $directory = $::bsdauth::params::skey_directory,
) inherits ::bsdauth::params {
if ! defined(Class['::bsdauth']) {
fail('You must include the bsdauth base class before using the bsdauth::skey class')
}
contain ::bsdauth::skey::config
}
|