summaryrefslogtreecommitdiff
path: root/puppet/modules/site_shorewall/manifests/dnat.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_shorewall/manifests/dnat.pp')
-rw-r--r--puppet/modules/site_shorewall/manifests/dnat.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/puppet/modules/site_shorewall/manifests/dnat.pp b/puppet/modules/site_shorewall/manifests/dnat.pp
index 5992c91f..a73294cc 100644
--- a/puppet/modules/site_shorewall/manifests/dnat.pp
+++ b/puppet/modules/site_shorewall/manifests/dnat.pp
@@ -8,12 +8,12 @@ define site_shorewall::dnat (
shorewall::rule {
"dnat_${name}_${destinationport}":
+ action => 'DNAT',
source => $source,
destination => $destination,
+ proto => $proto,
destinationport => $destinationport,
originaldest => $originaldest,
- proto => $proto,
- order => 200,
- action => 'DNAT';
+ order => 200
}
}