Puppet Class: apache::mod::proxy_connect

Defined in:
manifests/mod/proxy_connect.pp

Summary

Installs `mod_proxy_connect`.

Overview

Parameters:

  • apache_version (Any) (defaults to: undef)

    Used to verify that the Apache version you have requested is compatible with the module.

See Also:



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

class apache::mod::proxy_connect (
  $apache_version  = undef,
) {
  include ::apache
  $_apache_version = pick($apache_version, $apache::apache_version)
  if versioncmp($_apache_version, '2.2') >= 0 {
    Class['::apache::mod::proxy'] -> Class['::apache::mod::proxy_connect']
    ::apache::mod { 'proxy_connect': }
  }
}