summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/0026policy_variable_0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/nft-f/0026policy_variable_0')
-rw-r--r--tests/shell/testcases/nft-f/0026policy_variable_017
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/shell/testcases/nft-f/0026policy_variable_0 b/tests/shell/testcases/nft-f/0026policy_variable_0
deleted file mode 100644
index d4d98ede..00000000
--- a/tests/shell/testcases/nft-f/0026policy_variable_0
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-# Tests use of variables in chain policy
-
-set -e
-
-RULESET="
-define default_policy = \"drop\"
-
-table inet global {
- chain prerouting {
- type filter hook prerouting priority filter
- policy \$default_policy
- }
-}"
-
-$NFT -f - <<< "$RULESET"