use proper directory
[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         $archive_root = $::hostname ? {
14                 default    => '/srv/mirrors/debian,
15         }
16
17         apache2::site { '010-ftp.debian.org':
18                 site   => 'ftp.debian.org',
19                 content => template('roles/apache-ftp.debian.org.erb'),
20         }
21
22         if has_role('debian_mirror_onion') {
23                 if ! $onion_v4_addr {
24                         fail("Do not have an onion_v4_addr set for $::hostname.")
25                 }
26
27                 onion::service { 'ftp.debian.org':
28                         port => 80,
29                         target_port => 80,
30                         target_address => $onion_v4_addr,
31                 }
32         }
33 }