New ipv6 addresses for klecker
[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
16         apache2::site { '010-debug.mirrors.debian.org':
17                 site   => 'debug.mirrors.debian.org',
18                 content => template('roles/apache-debug.mirrors.debian.org.erb'),
19         }
20
21         if has_role('static_mirror_onion') {
22                 if ! $onion_v4_addr {
23                         fail("Do not have an onion_v4_addr set for $::hostname.")
24                 }
25
26                 onion::service { 'debug.mirrors.debian.org':
27                         port => 80,
28                         target_port => 80,
29                         target_address => $onion_v4_addr,
30                 }
31         }
32 }