X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=modules%2Fapache2%2Fmanifests%2Finit.pp;h=f29eeefeb310d484451e052b6522a8ab88219301;hb=0ddec3cf101140def15c2d0b7d608141a82e38f3;hp=aed20f09e96bbc3d3ff7c627ad12f447515153fd;hpb=b4e31066e5977da34007d4ca762ce932fac4221d;p=dsa-puppet.git diff --git a/modules/apache2/manifests/init.pp b/modules/apache2/manifests/init.pp index aed20f09..f29eeefe 100644 --- a/modules/apache2/manifests/init.pp +++ b/modules/apache2/manifests/init.pp @@ -1,5 +1,4 @@ class apache2 { - package { 'apache2': ensure => installed, } @@ -11,6 +10,15 @@ class apache2 { apache2::module { 'info': } apache2::module { 'status': } + apache2::module { 'headers': } + + package { 'libapache2-mod-macro': + ensure => installed + } + + apache2::module { 'macro': + require => Package['libapache2-mod-macro'] + } apache2::site { '00-default': site => 'default-debian.org', @@ -22,13 +30,31 @@ class apache2 { } apache2::config { 'ressource-limits': - content => template('apache2/ressource-limits.erb'), + ensure => absent, + } + + if has_role('buildd_master') { + $memlimit = 192 * 1024**2 + } elsif has_role('nagiosmaster') { + $memlimit = 96 * 1024**2 + } elsif has_role('packagesqamaster') { + $memlimit = 192 * 1024**2 + } else { + $memlimit = 32 * 1024**2 + } + + apache2::config { 'resource-limits': + content => template('apache2/resource-limits.erb'), } apache2::config { 'security': source => 'puppet:///modules/apache2/security', } + apache2::config { 'logformat-privacy': + source => 'puppet:///modules/apache2/logformat-privacy', + } + apache2::config { 'local-serverinfo': source => 'puppet:///modules/apache2/local-serverinfo', } @@ -37,10 +63,12 @@ class apache2 { source => 'puppet:///modules/apache2/server-status', } + apache2::config { 'puppet-ssl-macros': + source => 'puppet:///modules/apache2/puppet-ssl-macros', + } + 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': @@ -56,6 +84,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': } @@ -64,20 +97,7 @@ class apache2 { script => 'ps_', } - if $php5 { - package { 'php5-suhosin': - ensure => installed, - require => Package['apache2'], - } - - file { '/etc/php5/conf.d/suhosin.ini': - source => 'puppet:///modules/apache2/suhosin.ini', - require => Package['php5-suhosin'], - notify => Service['apache2'], - } - } - - if $::hostname in [busoni,duarte,holter,lindberg,master,powell,beach,widor] { + if $::hostname in [beach,buxtehude,picconi,pkgmirror-1and1] { include apache2::dynamic } else { @ferm::rule { 'dsa-http':