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