summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2018-04-05 09:12:31 +0000
committerintrigeri <intrigeri@boum.org>2018-04-05 09:12:31 +0000
commitcba722d36a8bbd0bb5ce035228e7983ca48855a1 (patch)
tree8d0e4451bb865cc14102a70b97256157d2a064ea
parent00d7e707917a28816ea34589318390fe4f185c73 (diff)
parentd37b528ddfc8912d8c94cd6ee9c91d58b5b8af66 (diff)
Merge branch 'routefilter' into 'master'
routefilter is also not an ipv6 possible option See merge request shared-puppet-modules-group/shorewall!13
-rw-r--r--manifests/interface.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/interface.pp b/manifests/interface.pp
index d6c3623..a6046a1 100644
--- a/manifests/interface.pp
+++ b/manifests/interface.pp
@@ -47,8 +47,10 @@ define shorewall::interface(
if $shorewall::with_shorewall6 {
# logmartians is not available on shorewall6
$all_options3 = regsubst($all_options2,',logmartians','')
+ # routefilter is not available in the kernel for ipv6
+ $all_options4 = regsubst($all_options3,',routefilter','')
shorewall::entry { "interfaces-${order}-${name}_6":
- line => "${zone} ${name} ${all_options3}",
+ line => "${zone} ${name} ${all_options4}",
shorewall => false,
shorewall6 => true,
}