mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 01:30:16 +02:00
f479350b0c
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13398 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
435 B
Bash
Executable File
24 lines
435 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
/sbin/ifdown "$@"
|
|
|
|
. /etc/functions.sh
|
|
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
|
[ "x$1" = "x-a" ] && {
|
|
[ -e "/tmp/resolv.conf.auto" ] && rm /tmp/resolv.conf.auto
|
|
config_cb() {
|
|
[ interface != "$1" -o -z "$2" ] || eval "$0 $2"
|
|
}
|
|
config_load network
|
|
exit
|
|
}
|
|
|
|
include /lib/network
|
|
scan_interfaces
|
|
|
|
config_get ifname "$1" device
|
|
for dev in $ifname; do
|
|
setup_interface "$dev" "$1"
|
|
done
|