Setup /srv/mirrors on all (archvsync-based) mirrors
[mirror/dsa-puppet.git] / modules / roles / manifests / historical_mirror.pp
1 class roles::historical_mirror {
2         include roles::archvsync_base
3         include apache2::expires
4
5         $vhost_listen = $::hostname ? {
6                 klecker => '130.89.148.13:80 2001:610:1908:b000::148:13:80',
7                 default => '*:80',
8         }
9         $onion_v4_addr = $::hostname ? {
10                 default    => undef,
11         }
12         $archive_root = $::hostname ? {
13                 default    => '/srv/mirrors/debian-archive',
14         }
15
16         apache2::site { '010-archive.debian.org':
17                 site   => 'archive.debian.org',
18                 content => template('roles/apache-archive.debian.org.erb'),
19         }
20
21         if has_role('historical_mirror_onion') {
22                 if ! $onion_v4_addr {
23                         fail("Do not have an onion_v4_addr set for $::hostname.")
24                 }
25
26                 onion::service { 'archive.debian.org':
27                         port => 80,
28                         target_port => 80,
29                         target_address => $onion_v4_addr,
30                 }
31         }
32 }