summaryrefslogtreecommitdiff
path: root/manifests/mangle.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2015-05-08 16:07:30 -0400
committerMicah Anderson <micah@riseup.net>2015-05-08 16:07:30 -0400
commit77ce0b926b7418703223b4a6c489067f9d9bc4f5 (patch)
tree26892e3f801b3f32444a2bb494823f0e37c305e0 /manifests/mangle.pp
parent8a549b74ff01e4b8076f9e183526ba385c9d8f5a (diff)
parent74ea10a6a1d4f4c1624d85d3d3795eaf819df10c (diff)
Merge branch 'master' into riseup
Diffstat (limited to 'manifests/mangle.pp')
-rw-r--r--manifests/mangle.pp19
1 files changed, 19 insertions, 0 deletions
diff --git a/manifests/mangle.pp b/manifests/mangle.pp
new file mode 100644
index 0000000..e3fd1b3
--- /dev/null
+++ b/manifests/mangle.pp
@@ -0,0 +1,19 @@
+define shorewall::mangle(
+ $source,
+ $destination,
+ $proto = '-',
+ $destinationport = '-',
+ $sourceport = '-',
+ $user = '-',
+ $test = '-',
+ $length = '-',
+ $tos = '-',
+ $connbytes = '-',
+ $helper = '-',
+ $headers = '-',
+ $order = '100'
+){
+ shorewall::entry{"mangle-${order}-${name}":
+ line => "${name} ${source} ${destination} ${proto} ${destinationport} ${sourceport} ${user} ${test} ${length} ${tos} ${connbytes} ${helper} ${headers}"
+ }
+}