X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fapache2%2Fmanifests%2Finit.pp;h=fba3b38905b67a79bf0197ba63b6c42d5b60463f;hb=6dbff72324d2f806d47ad84f83d434683bb8aa87;hp=bbda120fa75b45733cb89fb7349262c300e75ad3;hpb=177f0e82a481fb5be545e36af78249c48cd0d89a;p=mirror%2Fdsa-puppet.git diff --git a/modules/apache2/manifests/init.pp b/modules/apache2/manifests/init.pp index bbda120fa..fba3b3890 100644 --- a/modules/apache2/manifests/init.pp +++ b/modules/apache2/manifests/init.pp @@ -1,3 +1,11 @@ +# = Class: apache2 +# +# Standard apache config debian.org hosts +# +# == Sample Usage: +# +# include apache2 +# class apache2 { package { 'apache2': ensure => installed, @@ -35,6 +43,8 @@ class apache2 { if has_role('buildd_master') { $memlimit = 192 * 1024 * 1024 + } elsif has_role('buildd_ports_master') { + $memlimit = 192 * 1024 * 1024 } elsif has_role('nagiosmaster') { $memlimit = 96 * 1024 * 1024 } elsif has_role('packagesqamaster') { @@ -69,6 +79,20 @@ class apache2 { source => 'puppet:///modules/apache2/puppet-ssl-macros', } + apache2::config { 'puppet-config': + content => template('apache2/puppet-config.erb'), + } + + apache2::config { 'pratchett': + source => 'puppet:///modules/apache2/pratchett', + } + + if $::lsbmajdistrelease > 7 { + file { '/etc/apache2/mods-available/mpm_worker.conf': + source => 'puppet:///modules/apache2/mpm_worker', + } + } + file { '/etc/apache2/sites-available/common-ssl.inc': ensure => absent, }