From 12eb1c316840776ababe91f93ca96c74e93d6c61 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 27 Aug 2006 10:05:58 +0000 Subject: [PATCH] fix find_config() in the network scripts SVN-Revision: 4682 --- openwrt/package/base-files/default/lib/network/config.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/openwrt/package/base-files/default/lib/network/config.sh b/openwrt/package/base-files/default/lib/network/config.sh index 5bc74d1285..ec05c3eb81 100755 --- a/openwrt/package/base-files/default/lib/network/config.sh +++ b/openwrt/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 -- 2.30.2