some hosts use mpm_prefork
[mirror/dsa-puppet.git] / modules / apache2 / manifests / init.pp
index cd4f1f7..707cd13 100644 (file)
@@ -92,6 +92,14 @@ class apache2 {
                source => 'puppet:///modules/apache2/pratchett',
        }
 
+       apache2::module { 'mpm_event': ensure => absent }
+       if has_role('apache_prefork') {
+               apache2::module { 'mpm_worker': ensure => absent }
+               apache2::module { 'mpm_prefork': }
+       } else {
+               apache2::module { 'mpm_prefork': ensure => absent }
+               apache2::module { 'mpm_worker': }
+       }
        if $::lsbmajdistrelease > 7 {
                file { '/etc/apache2/mods-available/mpm_worker.conf':
                        content => template('apache2/mpm_worker.erb'),
@@ -131,6 +139,10 @@ class apache2 {
        munin::check { 'ps_apache2':
                script => 'ps_',
        }
+       # The munin script needs this
+       package { 'libwww-perl':
+               ensure => installed,
+       }
 
        if $::hostname in [beach,buxtehude,picconi,pkgmirror-csail] {
                include apache2::dynamic