summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/0026listing_0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/nft-f/0026listing_0')
-rwxr-xr-xtests/shell/testcases/nft-f/0026listing_014
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/shell/testcases/nft-f/0026listing_0 b/tests/shell/testcases/nft-f/0026listing_0
new file mode 100755
index 00000000..0f2f27c6
--- /dev/null
+++ b/tests/shell/testcases/nft-f/0026listing_0
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+# This is like "flush ruleset" except only flushes THIS ruleset, not ALL rulesets.
+# In particular, it leaves the dynamic sshguard/fail2ban deny lists untouched.
+RULESET="add table A
+delete table A
+table A {
+ chain B {
+ tcp dport {1,2} accept
+ }
+}
+list ruleset"
+
+exec $NFT -f - <<< "$RULESET"