From: Jason Short Date: Wed, 11 Apr 2012 23:49:50 +0000 (-0700) Subject: * (#13896) Changed 'jump' to 'action', commands to lower case X-Git-Tag: 0.1.0~33^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=e513685c5439c377fc9793ec05ab320ff580755e;p=puppet-modules%2Fpuppetlabs-firewall.git * (#13896) Changed 'jump' to 'action', commands to lower case --- diff --git a/examples/iptables/readme.pp b/examples/iptables/readme.pp index fff436b..bc45160 100644 --- a/examples/iptables/readme.pp +++ b/examples/iptables/readme.pp @@ -1,33 +1,33 @@ firewall { '000 allow packets with valid state': - state => ['RELATED', 'ESTABLISHED'], - jump => 'ACCEPT', + state => ['RELATED', 'ESTABLISHED'], + action => 'accept', } firewall { '001 allow icmp': - proto => 'icmp', - jump => 'ACCEPT', + proto => 'icmp', + action => 'accept', } firewall { '002 allow all to lo interface': iniface => 'lo', - jump => 'ACCEPT', + action => 'accept', } firewall { '100 allow http': - proto => 'tcp', - dport => '80', - jump => 'ACCEPT', + proto => 'tcp', + dport => '80', + action => 'accept', } firewall { '100 allow ssh': - proto => 'tcp', - dport => '22', - jump => 'ACCEPT', + proto => 'tcp', + dport => '22', + action => 'accept', } firewall { '100 allow mysql from internal': proto => 'tcp', dport => '3036', source => '10.5.5.0/24', - jump => 'ACCEPT', + action => 'accept', } firewall { '999 drop everything else': - jump => 'DROP', + action => 'drop', } resources { 'firewall':