applications/luci_splash: Do not try to get parent interfaces for bridges
authorManuel Munz <freifunk@somakoma.de>
Sat, 9 Feb 2013 16:55:35 +0000 (16:55 +0000)
committerManuel Munz <freifunk@somakoma.de>
Sat, 9 Feb 2013 16:55:35 +0000 (16:55 +0000)
applications/luci-splash/root/etc/init.d/luci_splash

index d4d3870..0d21bf5 100755 (executable)
@@ -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