mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 12:38:27 +02:00
84e5ae23ce
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1750 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
334 B
Bash
Executable File
12 lines
334 B
Bash
Executable File
#!/bin/ash
|
|
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
|
. /etc/functions.sh
|
|
. /etc/network.overrides
|
|
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
|
|
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>&-
|