Setup /srv/mirrors on all (archvsync-based) mirrors
[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',
6                 mirror-isc => '149.20.4.15:80 [2001:4f8:1:c::15]:80',
7                 default => '*:80',
8         }
9         $onion_v4_addr = $::hostname ? {
10                 klecker    => '130.89.148.14',
11                 mirror-isc => '149.20.4.15',
12                 default    => undef,
13         }
14
15         apache2::site { '010-debug.mirrors.debian.org':
16                 site   => 'debug.mirrors.debian.org',
17                 content => template('roles/apache-debug.mirrors.debian.org.erb'),
18         }
19
20         if has_role('static_mirror_onion') {
21                 if ! $onion_v4_addr {
22                         fail("Do not have an onion_v4_addr set for $::hostname.")
23                 }
24
25                 onion::service { 'debug.mirrors.debian.org':
26                         port => 80,
27                         target_port => 80,
28                         target_address => $onion_v4_addr,
29                 }
30         }
31 }