summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/0037policy_variable_1
blob: ae35516cde1c1e322486e77573a8494a62273ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

# Tests use of variables in chain policy

set -e

RULESET="
define default_policy = { 127.0.0.1 }

table inet global {
    chain prerouting {
        type filter hook prerouting priority filter
        policy \$default_policy
    }
}"

$NFT -f - <<< "$RULESET" && exit 1
exit 0