Puppet Class: bsdauth::bgpd

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

Overview

Managed the bgpd login class.

Examples:

Declaring the class

include ::bsdauth
include ::bsdauth::bgpd

Parameters:

  • attributes (Hash[String, Any]) (defaults to: $::bsdauth::params::bgpd_attributes)

See Also:

Since:

  • 2.0.0



13
14
15
16
17
18
19
20
21
22
23
24
# File 'manifests/bgpd.pp', line 13

class bsdauth::bgpd (
  Hash[String, Any] $attributes = $::bsdauth::params::bgpd_attributes,
) inherits ::bsdauth::params {

  if ! defined(Class['::bsdauth']) {
    fail('You must include the bsdauth base class before using the bsdauth::bgpd class')
  }

  ::bsdauth::class { 'bgpd':
    * => $attributes,
  }
}