Skip to content

Commit b76fe2c

Browse files
committed
(INCOM) Update firewall manifests to use jump instead of action
As part of the Firewall module rewrite the functionality of the `action` attribute has been rolled into the `jump` attribute, the two of them both managing the Firewall jump value.
1 parent 8d91395 commit b76fe2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manifests/server/firewall.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
firewall { "${http_port} accept - puppetdb":
1414
dport => $http_port,
1515
proto => 'tcp',
16-
action => 'accept',
16+
jump => 'accept',
1717
}
1818
}
1919

2020
if ($open_ssl_port) {
2121
firewall { "${ssl_port} accept - puppetdb":
2222
dport => $ssl_port,
2323
proto => 'tcp',
24-
action => 'accept',
24+
jump => 'accept',
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)