Puppet Class: apache::mod::authn_dbd

Inherits:
apache::params
Defined in:
manifests/mod/authn_dbd.pp

Summary

Installs `mod_authn_dbd`.

Overview

Parameters:

  • authn_dbd_params (Optional[String])

    The params needed for the mod to function.

  • authn_dbd_dbdriver (String) (defaults to: 'mysql')

    Selects an apr_dbd driver by name.

  • authn_dbd_query (Optional[String]) (defaults to: undef)
  • authn_dbd_min (Integer) (defaults to: 4)

    Set the minimum number of connections per process.

  • authn_dbd_max (Integer) (defaults to: 20)

    Set the maximum number of connections per process.

  • authn_dbd_keep (Integer) (defaults to: 8)

    Set the maximum number of connections per process to be sustained.

  • authn_dbd_exptime (Integer) (defaults to: 300)

    Set the time to keep idle connections alive when the number of connections specified in DBDKeep has been exceeded.

  • authn_dbd_alias (Optional[String]) (defaults to: undef)

    Sets an alias for ‘AuthnProvider.

See Also:



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'manifests/mod/authn_dbd.pp', line 30

class apache::mod::authn_dbd (
  Optional[String] $authn_dbd_params,
  String $authn_dbd_dbdriver         = 'mysql',
  Optional[String] $authn_dbd_query  = undef,
  Integer $authn_dbd_min             = 4,
  Integer $authn_dbd_max             = 20,
  Integer $authn_dbd_keep            = 8,
  Integer $authn_dbd_exptime         = 300,
  Optional[String] $authn_dbd_alias  = undef,
) inherits apache::params {
  include apache
  include apache::mod::dbd
  ::apache::mod { 'authn_dbd': }

  if $authn_dbd_alias {
    include apache::mod::authn_core
  }

  # Template uses
  # - All variables beginning with authn_dbd
  file { 'authn_dbd.conf':
    ensure  => file,
    path    => "${apache::mod_dir}/authn_dbd.conf",
    mode    => $apache::file_mode,
    content => template('apache/mod/authn_dbd.conf.erb'),
    require => [Exec["mkdir ${apache::mod_dir}"],],
    before  => File[$apache::mod_dir],
    notify  => Class['Apache::Service'],
  }
}