From: Manuel Munz Date: Sat, 9 Feb 2013 16:55:35 +0000 (+0000) Subject: applications/luci_splash: Do not try to get parent interfaces for bridges X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=b754f09d56fd03ed49367b65801f6b8d5baa709c applications/luci_splash: Do not try to get parent interfaces for bridges --- diff --git a/applications/luci-splash/root/etc/init.d/luci_splash b/applications/luci-splash/root/etc/init.d/luci_splash index d4d3870ff..0d21bf50b 100755 --- a/applications/luci-splash/root/etc/init.d/luci_splash +++ b/applications/luci-splash/root/etc/init.d/luci_splash @@ -36,10 +36,12 @@ iface_add() { config_get netmask "$net" netmask [ -n "$netmask" ] || return 0 + config_get type "$net" type + parentiface="$(uci -q get network.${net}.ifname)" - parentiface=${parentiface#@} - [ -n "$parentiface" ] && { + [ -n "$parentiface" ] && [ ! "$type" = "bridge" ] && { + parentiface=${parentiface#@} config_get parentproto "$parentiface" proto config_get parentipaddr "$parentiface" ipaddr config_get parentnetmask "$parentiface" netmask