From 2be8e603e027c718d8fc66c352c861d3dc9bb662 Mon Sep 17 00:00:00 2001 From: jow Date: Wed, 20 Apr 2011 12:08:12 +0000 Subject: [PATCH] [package] ppp: extend the r26742 change to ip-down too git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26743 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/ppp/files/etc/ppp/ip-down | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/package/ppp/files/etc/ppp/ip-down b/package/ppp/files/etc/ppp/ip-down index f26cf4db0..487ff6b46 100755 --- a/package/ppp/files/etc/ppp/ip-down +++ b/package/ppp/files/etc/ppp/ip-down @@ -8,10 +8,13 @@ PPP_REMOTE="$5" PPP_IPPARAM="$(echo $6 | sed 's/\./_/g')" export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM [ -z "$PPP_IPPARAM" ] || { - env -i ACTION="ifdown" INTERFACE="$PPP_IPPARAM" DEVICE="$PPP_IFACE" PROTO=ppp /sbin/hotplug-call "iface" - - # remove the interface's network state - uci_revert_state network "$PPP_IPPARAM" + case "$PPP_IFACE" in + # only handle uci managed interfaces here, others are done by generic hotplug + 3g-*|ppp-*|pppoa-*|pppoe-*|pptp-*) + env -i ACTION="ifdown" INTERFACE="$PPP_IPPARAM" DEVICE="$PPP_IFACE" PROTO=ppp /sbin/hotplug-call "iface" + uci_revert_state network "$PPP_IPPARAM" + ;; + esac } [ -d /etc/ppp/ip-down.d ] && { -- 2.20.1