hiera -> hiera role; explicitly include apache2
[mirror/dsa-puppet.git] / modules / roles / manifests / popcon.pp
1 class roles::popcon {
2         ssl::service { 'popcon.debian.org':
3                 notify  => Exec['service apache2 reload'],
4                 key => true,
5         }
6
7         include apache2::ssl
8         apache2::site { 'popcon.debian.org':
9                 site => 'popcon.debian.org',
10                 source => 'puppet:///modules/roles/popcon/popcon.debian.org.conf',
11         }
12 }