Enable lingering for the contributors user
[mirror/dsa-puppet.git] / modules / roles / manifests / packages.pp
1 class roles::packages {
2   class { 'apache2':
3     rate_limit => true,
4   }
5
6   ssl::service { 'packages.debian.org': notify  => Exec['service apache2 reload'], key => true, }
7
8   # Note that there is also role specific config in exim4.conf
9   exim::vdomain { 'packages.debian.org':
10     owner => 'pkg_user',
11     group => 'pkg_maint',
12   }
13 }