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
|
# File 'manifests/mod/deflate.pp', line 12
class apache::mod::deflate (
Array[String] $types = [
'text/html text/plain text/xml',
'text/css',
'application/x-javascript application/javascript application/ecmascript',
'application/rss+xml',
'application/json',
],
Hash $notes = {
'Input' => 'instream',
'Output' => 'outstream',
'Ratio' => 'ratio',
}
) {
include apache
::apache::mod { 'deflate': }
file { 'deflate.conf':
ensure => file,
path => "${apache::mod_dir}/deflate.conf",
mode => $apache::file_mode,
content => epp('apache/mod/deflate.conf.epp', { 'types' => $types, 'notes' => $notes, }),
require => Exec["mkdir ${apache::mod_dir}"],
before => File[$apache::mod_dir],
notify => Class['apache::service'],
}
}
|