Make ports mirror template use an @archive_root and @archive_cd_root variable defined...
[mirror/dsa-puppet.git] / modules / roles / manifests / ports_mirror.pp
1 class roles::ports_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 [2001:67c:2564:a119::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         $archive_root = $::hostname ? {
15                 default    => '/srv/mirrors/debian-ports',
16         }
17         $archive_cd_root = $::hostname ? {
18                 default    => '/srv/mirrors/debian-ports-cd',
19         }
20
21         apache2::site { '010-ftp.ports.debian.org':
22                 site   => 'ftp.ports.debian.org',
23                 content => template('roles/apache-ftp.ports.debian.org.erb'),
24         }
25
26         if has_role('static_mirror_onion') {
27                 if ! $onion_v4_addr {
28                         fail("Do not have an onion_v4_addr set for $::hostname.")
29                 }
30
31                 onion::service { 'ftp.ports.debian.org':
32                         port => 80,
33                         target_port => 80,
34                         target_address => $onion_v4_addr,
35                 }
36         }
37 }