Fix typo
[mirror/dsa-puppet.git] / modules / roles / manifests / security_mirror.pp
1 class roles::security_mirror {
2         include roles::archvsync_base
3
4         $binds = $::hostname ? {
5                 mirror-anu      => [ '150.203.164.61', '[2001:388:1034:2900::3d]' ],
6                 mirror-bytemark => [ '5.153.231.46', '[2001:41c8:1000:21::21:46]' ],
7                 mirror-conova   => [ '217.196.149.233', '[2a02:16a8:dc41:100::233]' ],
8                 mirror-isc      => [ '149.20.4.14', '[2001:4f8:1:c::14]' ],
9                 mirror-umn      => [ '128.101.240.215', '[2607:ea00:101:3c0b::1deb:215]' ],
10                 default         => [ '[::]' ],
11         }
12
13         file { '/srv/mirrors/debian-security':
14                 ensure => link,
15                 target => '../ftp.root/debian-security',
16         }
17         file { '/srv/ftp.root':
18                 ensure  => directory,
19         }
20         file { '/srv/ftp.root/.nobackup':
21                 ensure  => present,
22                 content => '',
23         }
24         file { '/srv/ftp.root/debian-security':
25                 ensure => directory,
26                 owner  => 1176, # archvsync
27                 group  => 1176, # archvsync
28                 mode   => '0755',
29         }
30
31         include apache2::expires
32         include apache2::rewrite
33
34         apache2::site { '010-security.debian.org':
35                 site   => 'security.debian.org',
36                 content => template('roles/security_mirror/security.debian.org.erb')
37         }
38
39         $mirrors = hiera_hash('roles::security_mirror',[])
40         $fastly_mirrors = $mirrors.filter |$h| { $h[1]['fastly-backend'] }
41         $hosts_to_check = $fastly_mirrors.map | $h| { $h['service-hostname'] }
42
43         roles::mirror_health { 'security':
44                 check_hosts   => $hosts_to_check,
45                 check_service => 'security',
46                 url           => 'http://security.backend.mirrors.debian.org/debian/dists/sid/Release',
47                 health_url    => 'http://security.backend.mirrors.debian.org/_health',
48         }
49
50         vsftpd::site { 'security':
51                 ensure => absent,
52                 root   => '/nonexistent',
53         }
54
55         rsync::site { 'security':
56                 source      => 'puppet:///modules/roles/security_mirror/rsyncd.conf',
57                 max_clients => 100,
58                 binds       => $binds,
59         }
60
61         $onion_v4_addr = $::hostname ? {
62                 mirror-anu => '150.203.164.61',
63                 mirror-isc => '149.20.4.14',
64                 mirror-umn => '128.101.240.215',
65                 villa      => '212.211.132.32',
66                 lobos      => '212.211.132.250',
67                 default   => undef,
68         }
69         if has_role('security_mirror_onion') {
70                 if ! $onion_v4_addr {
71                         fail("Do not have an onion_v4_addr set for $::hostname.")
72                 }
73
74                 onion::service { 'security.debian.org':
75                         port => 80,
76                         target_port => 80,
77                         target_address => $onion_v4_addr,
78                 }
79         }
80 }