Puppet Class: apache::mod::proxy_html

Defined in:
manifests/mod/proxy_html.pp

Summary

Installs `mod_proxy_html`.

Overview



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'manifests/mod/proxy_html.pp', line 6

class apache::mod::proxy_html {
  include apache
  require apache::mod::proxy
  require apache::mod::proxy_http

  # Add libxml2
  case $facts['os']['family'] {
    /RedHat|FreeBSD|Gentoo|Suse/: {
      ::apache::mod { 'xml2enc': }
      $loadfiles = undef
    }
    'Debian': {
      $gnu_path = $facts['os']['hardware'] ? {
        'i686'  => 'i386',
        default => $facts['os']['hardware'],
      }
      case $facts['os']['name'] {
        'Ubuntu': {
          $loadfiles = $facts['os']['release']['major'] ? {
            '10'    => ['/usr/lib/libxml2.so.2'],
            default => ["/usr/lib/${gnu_path}-linux-gnu/libxml2.so.2"],
          }
        }
        'Debian': {
          $loadfiles = $facts['os']['release']['major'] ? {
            '6'     => ['/usr/lib/libxml2.so.2'],
            default => ["/usr/lib/${gnu_path}-linux-gnu/libxml2.so.2"],
          }
        }
        default: {
          $loadfiles = ["/usr/lib/${gnu_path}-linux-gnu/libxml2.so.2"]
        }
      }
      ::apache::mod { 'xml2enc': }
    }
    default: {}
  }

  ::apache::mod { 'proxy_html':
    loadfiles => $loadfiles,
  }

  # Template uses $icons_path
  file { 'proxy_html.conf':
    ensure  => file,
    path    => "${apache::mod_dir}/proxy_html.conf",
    mode    => $apache::file_mode,
    content => template('apache/mod/proxy_html.conf.erb'),
    require => Exec["mkdir ${apache::mod_dir}"],
    before  => File[$apache::mod_dir],
    notify  => Class['apache::service'],
  }
}