1 class roles::historical_mirror {
2 include roles::archvsync_base
3 include apache2::expires
5 $mirror_basedir_prefix = hiera('role_config__mirrors.mirror_basedir_prefix')
6 $archive_root = "${mirror_basedir_prefix}debian-archive"
8 $binds = $::hostname ? {
9 gretchaninov => ['209.87.16.41' , '[2607:f8f0:614:1::1274:41]' ],
10 klecker => ['130.89.148.13' , '[2001:67c:2564:a119::148:13]' ],
11 schmelzer => ['217.196.149.234', '[2a02:16a8:dc41:100::234]' ],
12 sibelius => ['193.62.202.28' , '[2001:630:206:4000:1a1a:0:c13e:ca1c]'],
16 $onion_v4_addr = $::hostname ? {
20 apache2::site { '010-archive.debian.org':
21 site => 'archive.debian.org',
22 content => template('roles/apache-archive.debian.org.erb'),
25 if has_role('historical_master') {
26 $sslname = 'archive-master.debian.org'
27 ssl::service { $sslname:
35 rsync::site { 'archive':
36 content => template('roles/historical_mirror/rsyncd.conf.erb'),
42 if has_role('historical_mirror_onion') {
44 fail("Do not have an onion_v4_addr set for $::hostname.")
47 onion::service { 'archive.debian.org':
50 target_address => $onion_v4_addr,