Nft chain names should also be in lowercase in the reverse function.

This commit is contained in:
redxef 2022-11-23 18:52:42 +01:00
parent 5ceb706fb0
commit a05fef2e83

4
net
View file

@ -44,7 +44,7 @@ nft_rev() {
family="$3"
table="$4"
chain="$5"
if [[ "$chain" = 'INPUT' ]]; then
if [[ "$chain" = 'input' ]]; then
protocol="$6"
field="$7"
port="$8"
@ -70,7 +70,7 @@ nft_rev() {
echo nft delete rule $table $chain handle \$handle
nft delete rule $table $chain handle \$handle
"
elif [[ "$chain" = 'FORWARD' ]]; then
elif [[ "$chain" = 'forward' ]]; then
key="$6"
ifname="$7"
policy="${13}"