Puppet Class: apache::mod::authn_dbd

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

Overview

Parameters:

  • authn_dbd_params (Any)
  • authn_dbd_dbdriver (Any) (defaults to: 'mysql')
  • authn_dbd_query (Any) (defaults to: undef)
  • authn_dbd_min (Any) (defaults to: '4')
  • authn_dbd_max (Any) (defaults to: '20')
  • authn_dbd_keep (Any) (defaults to: '8')
  • authn_dbd_exptime (Any) (defaults to: '300')
  • authn_dbd_alias (Any) (defaults to: undef)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'manifests/mod/authn_dbd.pp', line 1

class apache::mod::authn_dbd (
  $authn_dbd_params,
  $authn_dbd_dbdriver    = 'mysql',
  $authn_dbd_query       = undef,
  $authn_dbd_min         = '4',
  $authn_dbd_max         = '20',
  $authn_dbd_keep        = '8',
  $authn_dbd_exptime     = '300',
  $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'],
  }
}