summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/transactions/0002table_0
blob: c5f31a6fb40177dd663b65e9ecaf540a45453fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -e

RULESET="add table x
delete table x
add table x
add chain x y { type nat hook prerouting priority 0; policy accept; }
add table x { flags dormant; }"

$NFT -f - <<< "$RULESET"
if [ $? -ne 0 ] ; then
        echo "E: unable to load good ruleset" >&2
        exit 1
fi