Move archvsync_base from FTP to debian_mirror
[mirror/dsa-puppet.git] / modules / roles / manifests / debian_mirror.pp
1 class roles::debian_mirror {
2         include roles::archvsync_base
3
4         $vhost_listen = $::hostname ? {
5                 klecker    => '130.89.148.12:80 2001:610:1908:b000::148:12: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                 bilbao     => '5.153.231.37',
11                 klecker    => '130.89.148.12',
12                 mirror-isc => '149.20.4.15',
13                 default    => undef,
14         }
15         $archive_root = $::hostname ? {
16                 default    => '/srv/mirrors/debian',
17         }
18
19         apache2::site { '010-ftp.debian.org':
20                 site   => 'ftp.debian.org',
21                 content => template('roles/apache-ftp.debian.org.erb'),
22         }
23
24         if has_role('debian_mirror_onion') {
25                 if ! $onion_v4_addr {
26                         fail("Do not have an onion_v4_addr set for $::hostname.")
27                 }
28
29                 onion::service { 'ftp.debian.org':
30                         port => 80,
31                         target_port => 80,
32                         target_address => $onion_v4_addr,
33                 }
34         }
35 }