summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
}