Move all roles from local.yaml to hiera
[mirror/dsa-puppet.git] / modules / apache2 / manifests / init.pp
index a4e14ca..b14d408 100644 (file)
@@ -33,6 +33,16 @@ class apache2 {
                ensure => absent,
        }
 
+       if $::fqdn in $site::roles['buildd_master'] {
+               $memlimit = 192 * 1024**2
+       } elsif $::fqdn in $site::roles['nagiosmaster']{
+               $memlimit = 96 * 1024**2
+       } elsif $::fqdn in $site::roles['packagesqamaster']{
+               $memlimit = 192 * 1024**2
+       } else {
+               $memlimit = 32 * 1024**2
+       }
+
        apache2::config { 'resource-limits':
                content => template('apache2/resource-limits.erb'),
        }
@@ -74,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': }