sync base-files with whiterussian
[openwrt/svn-archive/archive.git] / openwrt / package / base-files / default / sbin / ifdown
index 2d4054d8b3650a673cff2b425fe727ef2a0917e1..1471369498243174a92adf57b5538b96a5d6e705 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>&-