X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;ds=sidebyside;f=modules%2Fapache2%2Fmanifests%2Finit.pp;h=0470b644b5fe0751c9b5ef8d7442a9e77c70c475;hb=e3552ebafacf4e63fd4a97c331066022b7017d56;hp=ae9f89487b0209c88656512f2768b9047c118d7c;hpb=112de0a1b1673d0bdf4553f8f812a82209617bee;p=mirror%2Fdsa-puppet.git diff --git a/modules/apache2/manifests/init.pp b/modules/apache2/manifests/init.pp index ae9f89487..0470b644b 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, @@ -33,6 +41,18 @@ class apache2 { ensure => absent, } + if has_role('buildd_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'), }