X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Fsecurity_mirror.pp;h=986b5ae294e36b32a880e6e98c5cb3d94f5c1b93;hb=6d3f386e0e197b73d031d3276d969170ed868766;hp=9b85cb5f6c54d26f51ca7cd1e3140eb6b3e35916;hpb=b98544412fd3916437b2250481b8a77c5edef40e;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/security_mirror.pp b/modules/roles/manifests/security_mirror.pp index 9b85cb5f6..986b5ae29 100644 --- a/modules/roles/manifests/security_mirror.pp +++ b/modules/roles/manifests/security_mirror.pp @@ -1,10 +1,24 @@ class roles::security_mirror { + $rsync_bind = $::hostname ? { + mirror-anu => '150.203.164.61', + mirror-isc => '149.20.20.19', + mirror-umn => '128.101.240.215', + default => '', + } + $rsync_bind6 = $::hostname ? { + mirror-anu => '2001:388:1034:2900::3d', + mirror-isc => '2001:4f8:8:36::1deb:19', + mirror-umn => '2607:ea00:101:3c0b::1deb:215', + default => '', + } + include apache2::cache apache2::site { '010-security.debian.org': site => 'security.debian.org', - source => 'puppet:///modules/roles/security_mirror/security.debian.org' + content => template('roles/security_mirror/security.debian.org.erb') } + include ferm::ftp_conntrack vsftpd::site { 'security': banner => 'security.debian.org FTP server (vsftpd)', logfile => '/var/log/ftp/vsftpd-security.debian.org.log', @@ -15,5 +29,28 @@ class roles::security_mirror { rsync::site { 'security': source => 'puppet:///modules/roles/security_mirror/rsyncd.conf', max_clients => 100, + bind => $rsync_bind, + bind6 => $rsync_bind6, + } + + + $onion_v4_addr = $::hostname ? { + mirror-anu => '150.203.164.61', + mirror-isc => '149.20.20.19', + mirror-umn => '128.101.240.215', + villa => '212.211.132.32', + lobos => '212.211.132.250', + default => undef, + } + if has_role('security_mirror_onion') { + if ! $onion_v4_addr { + fail("Do not have an onion_v4_addr set for $::hostname.") + } + + onion::service { 'security.debian.org': + port => 80, + target_port => 80, + target_address => $onion_v4_addr, + } } }