Puppet Class: apache::mod::authn_core
- Defined in:
 - manifests/mod/authn_core.pp
 
Summary
Installs `mod_authn_core`.Overview
        9 10 11 12 13 14 15  | 
      
        # File 'manifests/mod/authn_core.pp', line 9
class apache::mod::authn_core(
  $apache_version = $::apache::apache_version
) {
  if versioncmp($apache_version, '2.4') >= 0 {
    ::apache::mod { 'authn_core': }
  }
}
       |