diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-11-17 18:35:46 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-11-17 18:35:46 -0200 |
commit | 842a173f99e2fd2d51bff4cfaba51cadd8932ace (patch) | |
tree | 523f0ca86b33855f027e93fcb4af961c2fda832a /manifests | |
parent | 430389f5df672efcfca0f5cb9ab9b168114acfde (diff) | |
download | puppet-apache-842a173f99e2fd2d51bff4cfaba51cadd8932ace.tar.gz puppet-apache-842a173f99e2fd2d51bff4cfaba51cadd8932ace.tar.bz2 |
Manage mpm_itk module
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 4e6efb9..ed49377 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -103,6 +103,14 @@ class apache( require => Package["apache"], } + module { "mpm_itk": + ensure => $::lsbdistcodename ? { + wheezy => absent, + default => present, + }, + require => Package['apache', 'libapache2-mpm-itk'], + } + # disable compression # prevents BREACH attack # see https://superuser.com/questions/627413/how-do-i-disable-http-level-compression |