From 127b73d100872aad1fceb9478e709f620b62ddc6 Mon Sep 17 00:00:00 2001 From: Jenkins ConfDroid Date: Wed, 26 Feb 2025 01:45:40 +0100 Subject: [PATCH] recommit for updates in build 24 --- ...puppet_cd_3A_3Afirewall_3A_3Aiptables.html | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/doc/puppet_classes/puppet_cd_3A_3Afirewall_3A_3Aiptables.html b/doc/puppet_classes/puppet_cd_3A_3Afirewall_3A_3Aiptables.html index 2652bd7..7f33eb6 100644 --- a/doc/puppet_classes/puppet_cd_3A_3Afirewall_3A_3Aiptables.html +++ b/doc/puppet_classes/puppet_cd_3A_3Afirewall_3A_3Aiptables.html @@ -108,7 +108,18 @@ 10 11 12 -13 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24
# File 'manifests/firewall/iptables.pp', line 6
@@ -119,6 +130,17 @@ class puppet_cd::firewall::iptables (
 
   if $fqdn == $pt_puppetmaster {
 
+    firewall { '38140 open port 8140':
+      proto     => 'tcp',
+      dport     => '8140',
+      jump      => 'accept',
+    }
+
+    firewall { '38443 open port 8443':
+      proto     => 'tcp',
+      dport     => '8443',
+      jump      => 'accept',
+    }
   }
 }