summaryrefslogtreecommitdiffstats
path: root/iptables/tests/shell/testcases/nft-only/0007-mid-restore-flush_0
blob: 981f007f205b9f2e4033da930e4b338a80b285c9 (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

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

echo "COMMIT" >&"${COPROC[1]}"
# close the pipe to make iptables-restore exit if it didn't error out yet
eval "exec ${COPROC[1]}>&-"
wait $COPROC_PID