summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/listing/0005ruleset_ip_0
blob: c326680629f4e749f6045807ddb97f57a4bc3579 (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 ip 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 ip)"
if [ "$EXPECTED" != "$GET" ] ; then
	DIFF="$(which diff)"
	[ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
	exit 1
fi