131c80c125c10265ae112bb08993b5c4dd7244e2
[mirror/dsa-puppet.git] / modules / roles / manifests / rtmaster.pp
1 class roles::rtmaster {
2   include apache2
3   ssl::service { 'rt.debian.org':
4     notify => Exec['service apache2 reload'],
5     key    => true,
6   }
7
8   # Note that there is also role specific config in exim4.conf
9   exim::vdomain { 'rt.debian.org':
10     mail_user  => 'rt',
11     mail_group => 'rt',
12   }
13 }