4e9c6730477e3e0fbda37a54a82cb731403636e2
[mirror/dsa-puppet.git] / modules / roles / manifests / debug_mirror.pp
1 class roles::debug_mirror {
2         include roles::archvsync_base
3
4         $vhost_listen = $::hostname ? {
5                 klecker    => '130.89.148.14:80 [2001:610:1908:b000::148:14]:80 [2001:67c:2564:a119::148:14]:80',
6                 mirror-isc => '149.20.4.15:80 [2001:4f8:1:c::15]:80',
7                 mirror-conova => '217.196.149.232:80 [2a02:16a8:dc41:100::232]:80',
8                 default => '*:80',
9         }
10         $onion_v4_addr = $::hostname ? {
11                 klecker    => '130.89.148.14',
12                 mirror-isc => '149.20.4.15',
13                 default    => undef,
14         }
15         $archive_root = $::hostname ? {
16                 default    => '/srv/mirrors/debian-debug',
17         }
18
19         apache2::site { '010-debug.mirrors.debian.org':
20                 site   => 'debug.mirrors.debian.org',
21                 content => template('roles/apache-debug.mirrors.debian.org.erb'),
22         }
23
24         if has_role('static_mirror_onion') {
25                 if ! $onion_v4_addr {
26                         fail("Do not have an onion_v4_addr set for $::hostname.")
27                 }
28
29                 onion::service { 'debug.mirrors.debian.org':
30                         port => 80,
31                         target_port => 80,
32                         target_address => $onion_v4_addr,
33                 }
34         }
35 }