Mercurial > repos > other > Puppet
changeset 481:36eacac6bf5e
Fix missed firewall rules updates
They were updated, but then got lost in the merge/rebase
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Fri, 30 Aug 2024 16:02:54 +0100 |
parents | 2c3e745be8d2 |
children | d83de9b3a62b |
files | manifests/nodes.pp |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/manifests/nodes.pp Thu Aug 29 18:58:49 2024 +0100 +++ b/manifests/nodes.pp Fri Aug 30 16:02:54 2024 +0100 @@ -14,13 +14,13 @@ dport => 22, source => '2a00:1098:0:82:1000:0:5d5d:826a', proto => 'tcp', - action => 'accept', + jump => 'accept', } firewall { '090 Allow SSH (SSH proxy)': dport => 22, source => '2a00:1098:0:84:1000:3:0:2', proto => 'tcp', - action => 'accept', + jump => 'accept', } } node 'vps-2204.test.ibboard.co.uk' { @@ -52,6 +52,6 @@ dport => 22, source => '2a00:1098:0:82:1000:0:5d5d:826a', proto => 'tcp', - action => 'accept', + jump => 'accept', } }