summaryrefslogtreecommitdiffstats
path: root/files/examples/inet-filter.nft
diff options
context:
space:
mode:
Diffstat (limited to 'files/examples/inet-filter.nft')
-rwxr-xr-xfiles/examples/inet-filter.nft7
1 files changed, 0 insertions, 7 deletions
diff --git a/files/examples/inet-filter.nft b/files/examples/inet-filter.nft
deleted file mode 100755
index e5c8c54f..00000000
--- a/files/examples/inet-filter.nft
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/usr/sbin/nft -f
-
-table inet filter {
- chain input { type filter hook input priority 0; }
- chain forward { type filter hook forward priority 0; }
- chain output { type filter hook output priority 0; }
-}