Puppet Class: bsdauth::skey

Inherits:
::bsdauth::params
Defined in:
manifests/skey.pp

Overview

Manages S/Key profiles.

Examples:

Declaring the class

include ::bsdauth
include ::bsdauth::skey

Parameters:

  • directory (Stdlib::Absolutepath) (defaults to: $::bsdauth::params::skey_directory)

See Also:

Since:

  • 2.0.0



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
}