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