summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/listing/0007ruleset_inet_0
blob: b24cc4c0dadb0a76779de93af46e33ec1b408317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

# listing ruleset per family

EXPECTED="table inet test {
}"

set -e

$NFT add table ip test
$NFT add table ip6 test
$NFT add table inet test
$NFT add table arp test
$NFT add table bridge test

GET="$($NFT list ruleset inet)"
if [ "$EXPECTED" != "$GET" ] ; then
	DIFF="$(which diff)"
	[ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
	exit 1
fi