Note that exim contains tracker-specific configuration
[mirror/dsa-puppet.git] / modules / roles / manifests / planet_master.pp
1 class roles::planet_master {
2   include apache2
3   include apache2::ssl
4   apache2::config { 'puppet-debianhosts':
5     ensure => 'absent',
6   }
7   apache2::site { 'planet-master.debian.org':
8     content => template('roles/planet_master/planet-master.debian.org.erb')
9   }
10   ssl::service { 'planet-master.debian.org':
11     notify => Exec['service apache2 reload'],
12     key    => true,
13   }
14 }