diff options
Diffstat (limited to 'root/etc/functions.sh')
-rwxr-xr-x | root/etc/functions.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/root/etc/functions.sh b/root/etc/functions.sh index 1f9afb2948..2b85e15cbe 100755 --- a/root/etc/functions.sh +++ b/root/etc/functions.sh @@ -104,5 +104,7 @@ ifdown () ( type=$1 debug "### ifdown $type ###" if=$(nvram_get ${type}_ifname) - if_valid $if && $DEBUG ifconfig $if down + if_valid $if || return + kill $(cat /var/run/${if}.pid 2>-)2>- + $DEBUG ifconfig $if down ) |