diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-08-27 10:05:58 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-08-27 10:05:58 +0000 |
commit | b22c99747f922dbcf9ffdeb197b4c1140566b3de (patch) | |
tree | a94c4bb95a077b0646bac0edb9adfe1c6838aaf9 /package | |
parent | 6961291514ce808e3024e65f5f22a2bbc81e40e5 (diff) | |
download | upstream-b22c99747f922dbcf9ffdeb197b4c1140566b3de.tar.gz upstream-b22c99747f922dbcf9ffdeb197b4c1140566b3de.tar.bz2 upstream-b22c99747f922dbcf9ffdeb197b4c1140566b3de.zip |
fix find_config() in the network scripts
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4682 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-x | package/base-files/default/lib/network/config.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/base-files/default/lib/network/config.sh b/package/base-files/default/lib/network/config.sh index 5bc74d1285..ec05c3eb81 100755 --- a/package/base-files/default/lib/network/config.sh +++ b/package/base-files/default/lib/network/config.sh @@ -4,12 +4,15 @@ # DEBUG="echo" find_config() { - local iftype iface ifn + local iftype device iface ifaces ifn for ifn in $interfaces; do config_get iftype "$ifn" type config_get iface "$ifn" ifname + case "$iftype" in + bridge) config_get ifaces "$ifn" ifnames;; + esac config_get device "$ifn" device - for ifc in ${device:-$iface}; do + for ifc in $device $iface $ifaces; do [ "$ifc" = "$1" ] && { echo "$ifn" return 0 |