summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/0032priority_variable_0
blob: 51bc5eb15e2a4dd7fbabe8feae3e7ce6b3bc4367 (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 priority specification

set -e

RULESET="
define pri = 10

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

$NFT -f - <<< "$RULESET"