Nft chain names should also be in lowercase in the reverse function.
This commit is contained in:
parent
5ceb706fb0
commit
a05fef2e83
1 changed files with 2 additions and 2 deletions
4
net
4
net
|
@ -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}"
|
||||
|
|
Loading…
Add table
Reference in a new issue