summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2014-05-02 16:24:00 -0400
committerMicah Anderson <micah@leap.se>2014-05-02 16:24:00 -0400
commitc334061df623e3806c544598195eb93a805a91ce (patch)
tree28d5c4e3599af7c231577e3e59efb487be58c526
parentda775cb3379384c675887076a608566a5053efad (diff)
fix incorrect shorewall parameter name 'protocol', should be 'proto'
Change-Id: I9c6c798b174228d44d01b55f2a4aa19458e2da8d
-rw-r--r--puppet/modules/site_shorewall/manifests/eip.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_shorewall/manifests/eip.pp b/puppet/modules/site_shorewall/manifests/eip.pp
index 13f831b6..8fbba658 100644
--- a/puppet/modules/site_shorewall/manifests/eip.pp
+++ b/puppet/modules/site_shorewall/manifests/eip.pp
@@ -73,7 +73,7 @@ class site_shorewall::eip {
action => 'REJECT',
source => 'eip',
destination => 'net',
- protocol => 'udp',
+ proto => 'udp',
destinationport => 'domain',
order => 300;
@@ -81,7 +81,7 @@ class site_shorewall::eip {
action => 'REJECT',
source => 'eip',
destination => 'net',
- protocol => 'tcp',
+ proto => 'tcp',
destinationport => 'domain',
order => 301;
}