debug_mirror -> hiera role, first step
[mirror/dsa-puppet.git] / modules / roles / manifests / debug_mirror.pp
index dc69cff..0b361d8 100644 (file)
@@ -1,35 +1,46 @@
-class roles::debug_mirror {
+# a mirror for debug.debian.org
+#
+# @param listen_addr IP addresses to have apache listen on
+# @param onion_service provide the onion service from this host
+class roles::debug_mirror(
+  Array[Stdlib::IP::Address] $listen_addr = [],
+  Boolean $onion_service = false,
+) {
   include roles::archvsync_base
+  include apache2
+
+  $_enclosed_addresses = empty($listen_addr) ? {
+    true    => ['*'],
+    default => enclose_ipv6($listen_addr),
+  }
+  $vhost_listen = $_enclosed_addresses.map |$a| { "${a}:80" } .join(' ')
 
   $mirror_basedir_prefix = hiera('role_config__mirrors.mirror_basedir_prefix')
   $archive_root = "${mirror_basedir_prefix}debian-debug"
 
-  $listen_addresses = hiera('roles.debug_mirror')
-    .dig($::fqdn, 'listen-addresses')
-    .then |$a| { $a + [ '127.0.0.1:80', '[::1]:80' ] }
-    .lest || { ['*:80'] }
-
-  $vhost_listen = join($listen_addresses, ' ')
-  $onion_v4_addr = hiera('roles.debug_mirror', {})
-    .dig($::fqdn, 'onion_v4_address')
-
   apache2::site { '010-debug.mirrors.debian.org':
     site    => 'debug.mirrors.debian.org',
     content => template('roles/apache-debug.mirrors.debian.org.erb'),
   }
 
-  if has_role('debug_mirror_onion') {
-    if ! $onion_v4_addr {
-      fail("Do not have an onion_v4_addr set for ${::hostname}.")
+  if $onion_service {
+    $onion_addr = empty($listen_addr) ? {
+      true    => $base::public_address,
+      default => filter_ipv4($listen_addr)[0]
+    }
+    if ! $onion_addr {
+      fail("Do not have a useable address for the onionservice on ${::hostname}.  Is \$listen_addr empty or does it not have an IPv4 address?.")
     }
 
     onion::service { 'debug.mirrors.debian.org':
       port           => 80,
       target_port    => 80,
-      target_address => $onion_v4_addr,
+      target_address => $onion_addr,
     }
   }
 
+  Ferm::Rule::Simple <<| tag == 'ssh::server::from::ftp_master' |>>
+
   $hosts_to_check = hiera('roles.debug_mirror', {})
     .map |$h| { $h[1]['service-hostname'] }
   roles::mirror_health { 'debug':
@@ -38,6 +49,4 @@ class roles::debug_mirror {
     url           => 'http://debug.backend.mirrors.debian.org/debian-debug/dists/sid-debug/Release',
     health_url    => 'http://debug.backend.mirrors.debian.org/_health',
   }
-
-  Ferm::Rule::Simple <<| tag == 'ssh::server::from::ftp_master' |>>
 }