summaryrefslogtreecommitdiffstats
path: root/iptables/tests/shell/testcases/nft-only/0007-mid-restore-flush_0
blob: 43880ffbc58518d6e8c62b9964cfea44902bdbb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

[[ $XT_MULTI == *xtables-nft-multi ]] || { echo "skip $XT_MULTI"; exit 0; }
nft -v >/dev/null || { echo "skip $XT_MULTI (no nft)"; exit 0; }

coproc $XT_MULTI iptables-restore --noflush

cat >&"${COPROC[1]}" <<EOF
*filter
:foo [0:0]
COMMIT
*filter
:foo [0:0]
EOF

$XT_MULTI iptables-save | grep -q ':foo'
nft flush ruleset

echo "COMMIT" >&"${COPROC[1]}"
sleep 1

[[ -n $COPROC_PID ]] && kill $COPROC_PID
wait