have security rsync bind to specific address
[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.39', # XXX this will change to 61
4                 mirror-isc => '149.20.20.19',
5                 mirror-umn => '128.101.240.215',
6                 default    => '',
7         }
8         $rsync_bind6 = $::hostname ? {
9                 mirror-anu => '2001:388:1034:2900::3d', # XXX this will change to 3d
10                 mirror-isc => '2001:4f8:8:36::1deb:19',
11                 mirror-umn => '2607:ea00:101:3c0b::1deb:215',
12                 default    => '',
13         }
14
15         include apache2::cache
16         apache2::site { '010-security.debian.org':
17                 site   => 'security.debian.org',
18                 content => template('roles/security_mirror/security.debian.org.erb')
19         }
20
21         include ferm::ftp_conntrack
22         vsftpd::site { 'security':
23                 banner       => 'security.debian.org FTP server (vsftpd)',
24                 logfile      => '/var/log/ftp/vsftpd-security.debian.org.log',
25                 max_clients  => 200,
26                 root         => '/srv/ftp.root/',
27         }
28
29         rsync::site { 'security':
30                 source      => 'puppet:///modules/roles/security_mirror/rsyncd.conf',
31                 max_clients => 100,
32                 bind        => $rsync_bind,
33                 bind6       => $rsync_bind6,
34         }
35 }