2005-02-06 00:58:10 +00:00
|
|
|
#!/bin/ash
|
2005-07-15 16:56:23 +00:00
|
|
|
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
2005-02-06 00:58:10 +00:00
|
|
|
. /etc/functions.sh
|
2005-07-21 14:02:53 +00:00
|
|
|
. /etc/network.overrides
|
|
|
|
[ -e /etc/config/network ] && . /etc/config/network
|
2005-07-15 16:56:23 +00:00
|
|
|
type=$1
|
|
|
|
debug "### ifdown $type ###"
|
|
|
|
if=$(nvram get ${type}_ifname)
|
|
|
|
if_valid $if || exit
|
|
|
|
$DEBUG ifconfig $if down
|
|
|
|
kill $(cat /var/run/${if}.pid 2>&-) 2>&-
|