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