X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Fports_mirror.pp;h=d8ae988ebe9524e697ed95bca628c20a0e22bdda;hb=584f12fb4c5f6ce47a187868570f439f543b635d;hp=a2f5bfa8a584b1468e1e571bf92c1934fa6b0d1a;hpb=8f3280dc37053bf34c4c09cd615412f8a17e1a06;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/ports_mirror.pp b/modules/roles/manifests/ports_mirror.pp index a2f5bfa8a..d8ae988eb 100644 --- a/modules/roles/manifests/ports_mirror.pp +++ b/modules/roles/manifests/ports_mirror.pp @@ -1,31 +1,29 @@ -class roles::ports_mirror { - include roles::archvsync_base +class roles::ports_mirror( + String $vhost_listen = '*:80', + Boolean $onion_service = false, + Optional[Stdlib::IP::Address] $onion_addr = undef, +) { + include roles::archvsync_base - $vhost_listen = $::hostname ? { - klecker => '130.89.148.14:80 [2001:610:1908:b000::148:14]:80 [2001:67c:2564:a119::148:14]:80', - mirror-isc => '149.20.4.15:80 [2001:4f8:1:c::15]:80', - default => '*:80', - } - $onion_v4_addr = $::hostname ? { - klecker => '130.89.148.14', - mirror-isc => '149.20.4.15', - default => undef, - } + include apache2 - apache2::site { '010-ftp.ports.debian.org': - site => 'ftp.ports.debian.org', - content => template('roles/apache-ftp.ports.debian.org.erb'), - } + $mirror_basedir_prefix = hiera('role_config__mirrors.mirror_basedir_prefix') + $archive_root = "${mirror_basedir_prefix}debian-ports" - if has_role('static_mirror_onion') { - if ! $onion_v4_addr { - fail("Do not have an onion_v4_addr set for $::hostname.") - } + apache2::site { '010-ftp.ports.debian.org': + site => 'ftp.ports.debian.org', + content => template('roles/apache-ftp.ports.debian.org.erb'), + } - onion::service { 'ftp.ports.debian.org': - port => 80, - target_port => 80, - target_address => $onion_v4_addr, - } - } + if $onion_service { + if ! $onion_addr { + fail("Do not have an onion_addr set for ${::hostname}.") + } + + onion::service { 'ftp.ports.debian.org': + port => 80, + target_port => 80, + target_address => $onion_addr, + } + } }