summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/0036policy_variable_0
blob: d4d98ede0d8d39a9effdc719c2753b5f34c6ead1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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"