fix ifup/down for ppp-based stuff

SVN-Revision: 2536
This commit is contained in:
Felix Fietkau 2005-11-19 14:53:21 +00:00
parent 3cc0f965fb
commit 969a4d1c2a
3 changed files with 7 additions and 11 deletions

View File

@ -175,8 +175,8 @@ do_unregister() {
case "$IFPROTO" in
pppoe|pppoa|pptp)
killall ifup.${IFPROTO}
killall pppd
killall ifup.${IFPROTO} 2>&- >&-
killall pppd 2>&- >&-
;;
dhcp)
[ -f /var/run/${INTERFACE}.pid ] && kill "$(cat /var/run/${INTERFACE}.pid)" 2>&- >&-

View File

@ -12,12 +12,7 @@ if=$(nvram get ${type}_ifname)
case "$if_proto" in
pppoa) hotplug_dev unregister atm0; exit 0 ;;
pppoe)
[ "$(nvram get pppoe_atm)" = 1 ] && {
hotplug_dev unregister atm0
exit
}
;;
""|none) exit 0;;
esac
if [ "${if%%[0-9]}" = "br" ]; then

View File

@ -14,12 +14,13 @@ if=$(nvram get ${type}_ifname)
case "$if_proto" in
pppoa) hotplug_dev register atm0; exit 0 ;;
pppoe)
[ "$(nvram get pppoe_atm)" = 1 ] && {
pppoe)
ifconfig nas0 2>&- >&- || {
hotplug_dev register atm0
exit
exit 0
}
;;
none|"") exit 0;;
esac
if [ "${if%%[0-9]}" = "br" ]; then