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