Puppet Class: apache::mod::authn_core

Defined in:
manifests/mod/authn_core.pp

Overview

Parameters:

  • apache_version (Any) (defaults to: $::apache::apache_version)


1
2
3
4
5
6
7
# File 'manifests/mod/authn_core.pp', line 1

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