X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Fsecurity_mirror.pp;h=25af73c98a597db741d29216545d22b82afe9353;hb=1597cabb3f8e6722fa1d8fb4ac800b7e2c6ccf4c;hp=470fb4a45aeb85c3ae91900ef0dc42c01d82c0da;hpb=eb83c03ddda8253f230fc144574a3891fd28f874;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/security_mirror.pp b/modules/roles/manifests/security_mirror.pp index 470fb4a45..25af73c98 100644 --- a/modules/roles/manifests/security_mirror.pp +++ b/modules/roles/manifests/security_mirror.pp @@ -1,23 +1,31 @@ class roles::security_mirror { - $rsync_bind = $::hostname ? { - mirror-anu => '150.203.164.61', - mirror-isc => '149.20.4.14', - mirror-umn => '128.101.240.215', - default => '', + include roles::archvsync_base + + $binds = $::hostname ? { + mirror-anu => [ '150.203.164.61', '[2001:388:1034:2900::3d]' ], + mirror-bytemark => [ '5.153.231.46', '[2001:41c8:1000:21::21:46]' ], + mirror-conova => [ '217.196.149.233', '[2a02:16a8:dc41:100::233]' ], + mirror-isc => [ '149.20.4.14', '[2001:4f8:1:c::14]' ], + mirror-umn => [ '128.101.240.215', '[2607:ea00:101:3c0b::1deb:215]' ], + default => [ '[::]' ], } - $rsync_bind6 = $::hostname ? { - mirror-anu => '2001:388:1034:2900::3d', - mirror-isc => '2001:4f8:1:c::14', - mirror-umn => '2607:ea00:101:3c0b::1deb:215', - default => '', + + file { '/srv/mirrors/debian-security': + ensure => link, + target => '../ftp.root/debian-security', } - $ftp_bind = $::hostname ? { - mirror-anu => '150.203.164.61', - default => '', + file { '/srv/ftp.root': + ensure => directory, } - $ftp_bind6 = $::hostname ? { - mirror-anu => '2001:388:1034:2900::3d', - default => undef, + file { '/srv/ftp.root/.nobackup': + ensure => present, + content => '', + } + file { '/srv/ftp.root/debian-security': + ensure => directory, + owner => 1176, # archvsync + group => 1176, # archvsync + mode => '0755', } include apache2::expires @@ -28,32 +36,24 @@ class roles::security_mirror { content => template('roles/security_mirror/security.debian.org.erb') } - include ferm::ftp_conntrack + roles::mirror_health { 'security': + check_hosts => hiera('roles.security_mirror'), + check_service => 'security', + url => 'http://security.backend.mirrors.debian.org/debian/dists/sid/Release', + health_url => 'http://security.backend.mirrors.debian.org/_health', + } + vsftpd::site { 'security': - banner => 'security.debian.org FTP server (vsftpd)', - logfile => '/var/log/ftp/vsftpd-security.debian.org.log', - max_clients => 200, - root => '/srv/ftp.root/', - bind => $ftp_bind, - } - if ($ftp_bind6) { - vsftpd::site { 'security6': - banner => 'security.debian.org FTP server (vsftpd)', - logfile => '/var/log/ftp/vsftpd-security6.debian.org.log', - max_clients => 200, - root => '/srv/ftp.root/', - bind => $ftp_bind6, - } + ensure => absent, + root => '/nonexistent', } rsync::site { 'security': source => 'puppet:///modules/roles/security_mirror/rsyncd.conf', max_clients => 100, - bind => $rsync_bind, - bind6 => $rsync_bind6, + binds => $binds, } - $onion_v4_addr = $::hostname ? { mirror-anu => '150.203.164.61', mirror-isc => '149.20.4.14',