mirror of
https://gitlab.com/shorewall/code.git
synced 2025-02-02 10:59:27 +01:00
Merge branch '5.2.1'
This commit is contained in:
commit
4b7d346911
@ -963,7 +963,7 @@ add_gateway() # $1 = Delta $2 = Table Number
|
|||||||
local delta
|
local delta
|
||||||
local dev
|
local dev
|
||||||
|
|
||||||
route=`$IP -4 -o route ls table $2 | grep ^default | sed 's/default //; s/[\]//g'`
|
route=`$IP -4 -o route ls table $2 | grep ^default | sed 's/default //; s/linkdown//g; s/[\]//g'`
|
||||||
|
|
||||||
if [ -z "$route" ]; then
|
if [ -z "$route" ]; then
|
||||||
run_ip route add default scope global table $2 $1
|
run_ip route add default scope global table $2 $1
|
||||||
@ -997,7 +997,7 @@ delete_gateway() # $! = Description of the Gateway $2 = table number $3 = device
|
|||||||
local gateway
|
local gateway
|
||||||
local dev
|
local dev
|
||||||
|
|
||||||
route=`$IP -4 -o route ls table $2 | grep ^default | sed 's/[\]//g'`
|
route=`$IP -4 -o route ls table $2 | grep ^default | sed 's/linkdown//g; s/[\]//g'`
|
||||||
gateway=$1
|
gateway=$1
|
||||||
|
|
||||||
if [ -n "$route" ]; then
|
if [ -n "$route" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user