3
0

add service and iptables

This commit is contained in:
Arne Teuke
2025-02-26 01:44:56 +01:00
parent da07a7ae91
commit 7ff8eb56ef

View File

@@ -9,5 +9,16 @@ 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',
}
}
}