Puppet Class: apache::mod::authn_core

Defined in:
manifests/mod/authn_core.pp

Summary

Installs `mod_authn_core`.

Overview

Parameters:

  • apache_version (Optional[String]) (defaults to: $apache::apache_version)

    The version of apache being run.

See Also:



9
10
11
12
13
14
15
# File 'manifests/mod/authn_core.pp', line 9

class apache::mod::authn_core (
  Optional[String] $apache_version = $apache::apache_version
) {
  if versioncmp($apache_version, '2.4') >= 0 {
    ::apache::mod { 'authn_core': }
  }
}