Enable lingering for the contributors user
[mirror/dsa-puppet.git] / modules / roles / manifests / popcon.pp
1 class roles::popcon {
2   class { 'apache2':
3     rlimitmem => 512 * 1024 * 1024,
4   }
5
6   include apache2::ssl
7
8   ssl::service { 'popcon.debian.org':
9     notify => Exec['service apache2 reload'],
10     key    => true,
11   }
12   apache2::site { 'popcon.debian.org':
13     site   => 'popcon.debian.org',
14     source => 'puppet:///modules/roles/popcon/popcon.debian.org.conf',
15   }
16
17   exim::vdomain { 'popcon.debian.org':
18     owner => 'popcon',
19     group => 'popcon',
20   }
21 }