Puppet Class: bsdauth::yubikey
- Inherits:
- ::bsdauth::params
- Defined in:
- manifests/yubikey.pp
Overview
Manages Yubikey profiles.
23 24 25 26 27 28 29 30 31 32 |
# File 'manifests/yubikey.pp', line 23
class bsdauth::yubikey (
Stdlib::Absolutepath $directory = $::bsdauth::params::yubikey_directory,
) inherits ::bsdauth::params {
if ! defined(Class['::bsdauth']) {
fail('You must include the bsdauth base class before using the bsdauth::yubikey class')
}
contain ::bsdauth::yubikey::config
}
|