X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fapache2%2Fmanifests%2Finit.pp;h=fba3b38905b67a79bf0197ba63b6c42d5b60463f;hb=6dbff72324d2f806d47ad84f83d434683bb8aa87;hp=a3d47f1a0c00ac4dd3e2892f58db545a7121cbcb;hpb=35590b272f1aec5a4bc48c40fe8a763b3556f411;p=mirror%2Fdsa-puppet.git diff --git a/modules/apache2/manifests/init.pp b/modules/apache2/manifests/init.pp index a3d47f1a0..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, @@ -10,6 +18,7 @@ class apache2 { apache2::module { 'info': } apache2::module { 'status': } + apache2::module { 'headers': } package { 'libapache2-mod-macro': ensure => installed @@ -32,6 +41,20 @@ class apache2 { ensure => absent, } + 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') { + $memlimit = 192 * 1024 * 1024 + } elsif has_role('nm') { + $memlimit = 96 * 1024 * 1024 + } else { + $memlimit = 32 * 1024 * 1024 + } + apache2::config { 'resource-limits': content => template('apache2/resource-limits.erb'), } @@ -52,10 +75,26 @@ class apache2 { source => 'puppet:///modules/apache2/server-status', } + apache2::config { 'puppet-ssl-macros': + 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': - source => 'puppet:///modules/apache2/common-ssl.inc', - require => Package['apache2'], - notify => Service['apache2'], + ensure => absent, } file { '/etc/logrotate.d/apache2': @@ -71,6 +110,11 @@ class apache2 { content => template('apache2/default-index.html'), } + file { '/var/log/apache2/.nobackup': + mode => '0644', + content => '', + } + munin::check { 'apache_accesses': } munin::check { 'apache_processes': } munin::check { 'apache_volume': }