Move debug to store/collect health checker
[mirror/dsa-puppet.git] / modules / roles / manifests / historical_master.pp
index c0953f1..248c832 100644 (file)
@@ -1,14 +1,9 @@
 class roles::historical_master {
-       $sslname = 'archive-master.debian.org'
-
-       rsync::site_systemd { 'archive_master':
-               source      => 'puppet:///modules/roles/historical_master/rsyncd.conf',
-               max_clients => 100,
-               sslname     => $sslname,
-       }
-
-       ssl::service { $sslname:
-               key      => true,
-               tlsaport => [],
-       }
+  # export ssh allow rules for hosts that we should be able to access
+  @@ferm::rule::simple { "dsa-ssh-from-historical_master-${::fqdn}":
+    tag         => 'ssh::server::from::historical_master',
+    description => 'Allow ssh access from historical-master',
+    port        => '22',
+    saddr       => $base::public_addresses,
+  }
 }