From e4d83dcb1b715ec934b3e4bf1ed1c90e28fe7b3d Mon Sep 17 00:00:00 2001 From: Jenkins ConfDroid Date: Wed, 26 Feb 2025 16:16:15 +0100 Subject: [PATCH] recommit for updates in build 48 --- ...puppet_cd_3A_3Afirewall_3A_3Aiptables.html | 26 +++++++------------ 1 file changed, 10 insertions(+), 16 deletions(-) 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 7f33eb6..378e051 100644 --- a/doc/puppet_classes/puppet_cd_3A_3Afirewall_3A_3Aiptables.html +++ b/doc/puppet_classes/puppet_cd_3A_3Afirewall_3A_3Aiptables.html @@ -83,7 +83,7 @@
-

puppet_cd::firewwall::iptables.pp Module name: puppet_cd Author: Arne Teuke +

puppet_cd::firewall::iptables.pp Module name: puppet_cd Author: Arne Teuke (arne_teuke@confdroid)

@@ -116,30 +116,24 @@ 18 19 20 -21 -22 -23 -24 +21
# File 'manifests/firewall/iptables.pp', line 6
 
 class puppet_cd::firewall::iptables (
 
-) inherits puppet_cd::params  {
-
-  if $fqdn == $pt_puppetmaster {
-
+) inherits puppet_cd::params {
+  if $fqdn == $pt_pm_fqdn {
     firewall { '38140 open port 8140':
-      proto     => 'tcp',
-      dport     => '8140',
-      jump      => 'accept',
+      proto => 'tcp',
+      dport => '8140',
+      jump  => 'accept',
     }
-
     firewall { '38443 open port 8443':
-      proto     => 'tcp',
-      dport     => '8443',
-      jump      => 'accept',
+      proto => 'tcp',
+      dport => '8443',
+      jump  => 'accept',
     }
   }
 }