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

set -e

RULESET="add table x
add set x y { type ipv4_addr; }
flush ruleset
add table w
add set w y { type ipv4_addr; }"

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