e2ed25056a48cfbc92f06a27935ebc4b16726b1e
[mirror/dsa-puppet.git] / modules / roles / manifests / tracker.pp
1 class roles::tracker {
2   include apache2
3   include roles::sso_rp
4
5   package { 'libapache2-mod-wsgi-py3': ensure => installed, }
6   apache2::module { 'wsgi': require => Package['libapache2-mod-wsgi-py3'] }
7   ssl::service { 'tracker.debian.org':
8     notify => Exec['service apache2 reload'],
9     key    => true,
10   }
11   onion::service { 'tracker.debian.org': port => 80, target_address => 'tracker.debian.org', target_port => 80, direct => true }
12
13   # tell the mail-relays to forward this domain to us
14   exim::manualroute{ 'tracker.debian.org': }
15   # and then handle it locally
16   exim::vdomain { 'tracker.debian.org':
17     owner => 'qa',
18     group => 'qa',
19   }
20 }