summaryrefslogtreecommitdiff
path: root/manifests/rule.pp
diff options
context:
space:
mode:
authorJérôme Charaoui <jcharaoui@cmaisonneuve.qc.ca>2018-01-09 21:47:28 +0000
committerJérôme Charaoui <jcharaoui@cmaisonneuve.qc.ca>2018-01-09 21:47:28 +0000
commitaab96cce16438a419f72155c7bfcfcca66d77b45 (patch)
tree735834841999afc86550db4fd2239df8a177bebc /manifests/rule.pp
parent837fd3f29f09727d5a20514d7549837b8d8b4997 (diff)
parent532d79cba8f01cfc3bcd16ae83741aac08bab80f (diff)
Merge branch 'concat_update' into 'master'
Concat update See merge request shared-puppet-modules-group/shorewall!11
Diffstat (limited to 'manifests/rule.pp')
-rw-r--r--manifests/rule.pp2
1 files changed, 0 insertions, 2 deletions
diff --git a/manifests/rule.pp b/manifests/rule.pp
index 2fe91e2..b80c584 100644
--- a/manifests/rule.pp
+++ b/manifests/rule.pp
@@ -1,6 +1,5 @@
# mark is new in 3.4.4
define shorewall::rule(
- $ensure = present,
$action,
$source,
$destination,
@@ -14,7 +13,6 @@ define shorewall::rule(
$order
){
shorewall::entry{"rules-${order}-${name}":
- ensure => $ensure,
line => "# ${name}\n${action} ${source} ${destination} ${proto} ${destinationport} ${sourceport} ${originaldest} ${ratelimit} ${user} ${mark}",
}
}