mirror-isc renumber
[mirror/dsa-puppet.git] / modules / roles / manifests / security_mirror.pp
1 class roles::security_mirror {
2         $rsync_bind = $::hostname ? {
3                 mirror-anu => '150.203.164.61',
4                 mirror-isc => '149.20.4.14',
5                 mirror-umn => '128.101.240.215',
6                 default    => '',
7         }
8         $rsync_bind6 = $::hostname ? {
9                 mirror-anu => '2001:388:1034:2900::3d',
10                 mirror-isc => '2001:4f8:1:c::14',
11                 mirror-umn => '2607:ea00:101:3c0b::1deb:215',
12                 default    => '',
13         }
14         $ftp_bind = $::hostname ? {
15                 mirror-anu => '150.203.164.61',
16                 default => '',
17         }
18         $ftp_bind6 = $::hostname ? {
19                 mirror-anu => '2001:388:1034:2900::3d',
20                 default => undef,
21         }
22
23         include apache2::cache
24         apache2::site { '010-security.debian.org':
25                 site   => 'security.debian.org',
26                 content => template('roles/security_mirror/security.debian.org.erb')
27         }
28
29         include ferm::ftp_conntrack
30         vsftpd::site { 'security':
31                 banner       => 'security.debian.org FTP server (vsftpd)',
32                 logfile      => '/var/log/ftp/vsftpd-security.debian.org.log',
33                 max_clients  => 200,
34                 root         => '/srv/ftp.root/',
35                 bind         => $ftp_bind,
36         }
37         if ($ftp_bind6) {
38                 vsftpd::site { 'security6':
39                         banner       => 'security.debian.org FTP server (vsftpd)',
40                         logfile      => '/var/log/ftp/vsftpd-security6.debian.org.log',
41                         max_clients  => 200,
42                         root         => '/srv/ftp.root/',
43                         bind         => $ftp_bind6,
44                 }
45         }
46
47         rsync::site { 'security':
48                 source      => 'puppet:///modules/roles/security_mirror/rsyncd.conf',
49                 max_clients => 100,
50                 bind        => $rsync_bind,
51                 bind6       => $rsync_bind6,
52         }
53
54
55         $onion_v4_addr = $::hostname ? {
56                 mirror-anu => '150.203.164.61',
57                 mirror-isc => '149.20.4.14',
58                 mirror-umn => '128.101.240.215',
59                 villa      => '212.211.132.32',
60                 lobos      => '212.211.132.250',
61                 default   => undef,
62         }
63         if has_role('security_mirror_onion') {
64                 if ! $onion_v4_addr {
65                         fail("Do not have an onion_v4_addr set for $::hostname.")
66                 }
67
68                 onion::service { 'security.debian.org':
69                         port => 80,
70                         target_port => 80,
71                         target_address => $onion_v4_addr,
72                 }
73         }
74 }