summaryrefslogtreecommitdiffstats
path: root/files/examples
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2019-06-24 17:12:38 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2019-07-03 13:08:17 +0200
commitb76a2e2e78f0267f966cc88bf724cf96c2f14566 (patch)
tree7bd1a883793df6759ed0052397291ca5a2918143 /files/examples
parent57ca420f02acb3cac948c43916076452bcb00734 (diff)
files: Move netdev-ingress.nft to /etc/nftables as well
Commit 13535a3b40b62 ("files: restore base table skeletons") moved config skeletons back from examples/ to /etc/nftables/ directory, but ignored the fact that commit 6c9230e79339c ("nftables: rearrange files and examples") added a new file 'netdev-ingress.nft' which is referenced from 'all-in-one.nft' as well. Fixes: 13535a3b40b62 ("files: restore base table skeletons") Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'files/examples')
-rwxr-xr-xfiles/examples/netdev-ingress.nft7
1 files changed, 0 insertions, 7 deletions
diff --git a/files/examples/netdev-ingress.nft b/files/examples/netdev-ingress.nft
deleted file mode 100755
index 2585d154..00000000
--- a/files/examples/netdev-ingress.nft
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/usr/sbin/nft -f
-
-# mind the NIC, it must exists
-table netdev filter {
- chain loinput { type filter hook ingress device lo priority 0; }
-}
-