summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2018-03-23 17:47:43 -0400
committerMicah Anderson <micah@riseup.net>2018-03-23 17:47:43 -0400
commitd37b528ddfc8912d8c94cd6ee9c91d58b5b8af66 (patch)
tree12ccc73eecd04d0a65f4dfe7adfdfcdfda26b882
parent04ec5801350eb4e0b290fb0b585bfc592452c3ce (diff)
routefilter is also not a valid ipv6 option
-rw-r--r--manifests/interface.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/interface.pp b/manifests/interface.pp
index 4184db5..7e93c58 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,
}