summaryrefslogtreecommitdiffstats
path: root/iptables/tests/shell/testcases/firewalld-restore/0002-firewalld-restart_0
blob: 50e94924aa95d41da3262ff34bcab49b0fe275d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# simulate restart after it went down, so first restore
# the complete ruleset

$XT_MULTI iptables-restore < $(dirname "$0")/dumps/ipt-save-completed.txt

# add dummy rules to see if they get cleared or not.
for table in raw mangle nat filter;do
	$XT_MULTI iptables -t $table -N FOO$table || exit 1
	$XT_MULTI iptables -t $table -A OUTPUT -m comment --comment '"dummy rule in table $table OUTPUT"' || exit 1
	$XT_MULTI iptables -t $table -A FOO$table -m comment --comment '"dummy rule in table $table FOO$table"' || exit 1
done

# then run the other test script so it finds already-existing ruleset.

exec $(dirname "$0")/0001-firewalld_0