sync base-files with whiterussian
[openwrt.git] / openwrt / package / base-files / default / sbin / ifdown
index 2d4054d..1471369 100755 (executable)
@@ -6,6 +6,8 @@
 type=$1
 debug "### ifdown $type ###"
 if=$(nvram get ${type}_ifname)
-if_valid $if || exit 
-$DEBUG ifconfig $if down
+proto=$(nvram get ${type}_proto)
+if_valid $if && $DEBUG ifconfig $if down
 kill $(cat /var/run/${if}.pid 2>&-) 2>&-
+[ "$if" = "ppp0" ] && killall pppd
+killall ifup.$proto >&- 2>&-
This page took 0.023333 seconds and 4 git commands to generate.