aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2015-07-16 12:34:54 +0000
committerintrigeri <intrigeri@boum.org>2015-07-16 12:34:54 +0000
commit9d51aff4288516347a793d4ba802d7a669d2db5b (patch)
treed4c712f8e27427389259975d93edb66adcb2e258
parentd3b5fedd3191da12cea503074583f9a38e306580 (diff)
downloadpuppet-shorewall-9d51aff4288516347a793d4ba802d7a669d2db5b.tar.gz
puppet-shorewall-9d51aff4288516347a793d4ba802d7a669d2db5b.tar.bz2
shorewall::mangle: allow specifying the ACTION explicitly.
Previously, it was using $name, which prevented adding multiple mangle rules that share a common ACTION, with different parameters.
-rw-r--r--manifests/mangle.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/mangle.pp b/manifests/mangle.pp
index e3fd1b3..cd404e7 100644
--- a/manifests/mangle.pp
+++ b/manifests/mangle.pp
@@ -1,6 +1,7 @@
define shorewall::mangle(
$source,
$destination,
+ $action = $name,
$proto = '-',
$destinationport = '-',
$sourceport = '-',
@@ -14,6 +15,6 @@ define shorewall::mangle(
$order = '100'
){
shorewall::entry{"mangle-${order}-${name}":
- line => "${name} ${source} ${destination} ${proto} ${destinationport} ${sourceport} ${user} ${test} ${length} ${tos} ${connbytes} ${helper} ${headers}"
+ line => "${action} ${source} ${destination} ${proto} ${destinationport} ${sourceport} ${user} ${test} ${length} ${tos} ${connbytes} ${helper} ${headers}"
}
}