Sha256: d0fe6cf680ae21b868c2e40d218e89f341551ebfed8f321a52cffadc747e5bc5

Contents?: true

Size: 868 Bytes

Versions: 11

Compression:

Stored size: 868 Bytes

Contents

class apache::mod::disk_cache {
  $cache_root = $::osfamily ? {
    'debian'  => '/var/cache/apache2/mod_disk_cache',
    'redhat'  => '/var/cache/mod_proxy',
    'freebsd' => '/var/cache/mod_disk_cache',
  }
  if $::osfamily != 'FreeBSD' {
    # FIXME: investigate why disk_cache was dependent on proxy
    # NOTE: on FreeBSD disk_cache is compiled by default but proxy is not
    Class['apache::mod::proxy'] -> Class['apache::mod::disk_cache']
  }
  Class['apache::mod::cache'] -> Class['apache::mod::disk_cache']

  apache::mod { 'disk_cache': }
  # Template uses $cache_proxy
  file { 'disk_cache.conf':
    ensure  => file,
    path    => "${apache::mod_dir}/disk_cache.conf",
    content => template('apache/mod/disk_cache.conf.erb'),
    require => Exec["mkdir ${apache::mod_dir}"],
    before  => File[$apache::mod_dir],
    notify  => Service['httpd'],
  }
}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
freighthop-0.6.1 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.6.0 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.5.2 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.5.1 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.5.0 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.4.1 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.4.0 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.3.3 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.3.2 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.3.1 modules/apache/manifests/mod/disk_cache.pp
freighthop-0.3.0 modules/apache/manifests/mod/disk_cache.pp