diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-22 20:47:19 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-22 20:47:19 +0000 |
commit | 49bbf085bb6c7712a2b8ed8f62b066f4f8040697 (patch) | |
tree | 329f4f42316adbe5c66176565678332c10f0fe9b /openwrt/package/base-files/default/sbin/ifdown | |
parent | 6cd7a4809342fbe99c3713134ef3b8a61525813d (diff) |
sync base-files with whiterussian
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2260 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files/default/sbin/ifdown')
-rwxr-xr-x | openwrt/package/base-files/default/sbin/ifdown | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/openwrt/package/base-files/default/sbin/ifdown b/openwrt/package/base-files/default/sbin/ifdown index 2d4054d8b..147136949 100755 --- a/openwrt/package/base-files/default/sbin/ifdown +++ b/openwrt/package/base-files/default/sbin/ifdown @@ -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>&- |