2005-11-07 03:12:51 +02:00
|
|
|
#!/bin/sh
|
2005-07-15 19:56:23 +03:00
|
|
|
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
2005-02-06 02:58:10 +02:00
|
|
|
. /etc/functions.sh
|
2006-04-05 05:09:22 +03:00
|
|
|
. /etc/config/network
|
2005-11-07 03:12:51 +02:00
|
|
|
|
2005-07-15 19:56:23 +03:00
|
|
|
debug "### ifdown $type ###"
|
2005-11-19 05:17:20 +02:00
|
|
|
type=$1
|
2005-11-07 03:12:51 +02:00
|
|
|
|
2006-04-05 05:09:22 +03:00
|
|
|
eval "if_proto=\"\${${type}_proto}\""
|
|
|
|
eval "if=\"\${${type}_ifname}\""
|
|
|
|
[ "${if%%[0-9]}" = "ppp" ] && eval "if=\"\${${type}_device}\""
|
2005-11-19 05:17:20 +02:00
|
|
|
|
|
|
|
case "$if_proto" in
|
|
|
|
pppoa) hotplug_dev unregister atm0; exit 0 ;;
|
2005-11-19 16:53:21 +02:00
|
|
|
""|none) exit 0;;
|
2005-11-07 03:12:51 +02:00
|
|
|
esac
|
|
|
|
|
2005-11-19 05:17:20 +02:00
|
|
|
hotplug_dev unregister "$if"
|