Puppet Class: apache::mod::authz_default

Defined in:
manifests/mod/authz_default.pp

Summary

Installs and configures `mod_authz_default`.

Overview

Parameters:

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

    Version of Apache to install module on.

See Also:



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

class apache::mod::authz_default (
  Optional[String] $apache_version = $apache::apache_version
) {
  if versioncmp($apache_version, '2.4') >= 0 {
    warning('apache::mod::authz_default has been removed in Apache 2.4')
  } else {
    ::apache::mod { 'authz_default': }
  }
}