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',
+    }
   }
 }