puppetize ftp.d.o http
[mirror/dsa-puppet.git] / modules / roles / manifests / debian_mirror.pp
1 class roles::debian_mirror {
2         $vhost_listen = $::hostname ? {
3                 klecker    => '130.89.148.12:80 2001:610:1908:b000::148:12:80',
4                 mirror-isc => '149.20.4.15:80 [2001:4f8:1:c::15]:80',
5                 default => '*:80',
6         }
7         $onion_v4_addr = $::hostname ? {
8                 bilbao     => '5.153.231.37',
9                 klecker    => '130.89.148.12',
10                 mirror-isc => '149.20.4.15',
11                 default    => undef,
12         }
13
14         apache2::site { '010-ftp.debian.org':
15                 site   => 'ftp.debian.org',
16                 content => template('roles/apache-ftp.debian.org.erb'),
17         }
18
19         if has_role('debian_mirror_onion') {
20                 if ! $onion_v4_addr {
21                         fail("Do not have an onion_v4_addr set for $::hostname.")
22                 }
23
24                 onion::service { 'ftp.debian.org':
25                         port => 80,
26                         target_port => 80,
27                         target_address => $onion_v4_addr,
28                 }
29         }
30 }