summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/0050set_define_1
blob: c12de177c7ecd1dd002b093d46f88044439d0b67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

set -e

EXPECTED="define BASE_ALLOWED_INCOMING_TCP_PORTS = {}

table inet filter {
	chain input {
		type filter hook input priority 0; policy drop;
		tcp dport {\$BASE_ALLOWED_INCOMING_TCP_PORTS} ct state new counter accept
	}
}
"

$NFT -f - <<< "$EXPECTED" &> /dev/null || exit 0
echo "E: Accepted empty set" 1>&2
exit 1