From 768650413e9dc957a03f0577acdb46146ebe647a Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 19 Mar 2012 21:09:54 +0000 Subject: netifd: scan l3 devices on find_config() git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31033 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/netifd/files/lib/network/config.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/netifd/files/lib/network/config.sh b/package/netifd/files/lib/network/config.sh index 8b91f96a6..8fa9b1ac3 100755 --- a/package/netifd/files/lib/network/config.sh +++ b/package/netifd/files/lib/network/config.sh @@ -10,7 +10,8 @@ find_config() { ( json_load "$(ifstatus $interface)" json_get_var ifdev device - if [[ "$device" = "$ifdev" ]]; then + json_get_var ifl3dev l3_device + if [[ "$device" = "$ifdev" ]] || [[ "$device" = "$ifl3dev" ]]; then echo "$interface" exit 0 else -- cgit v1.2.3