summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-splash/root/etc/init.d/luci_splash
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-splash/root/etc/init.d/luci_splash')
-rwxr-xr-xapplications/luci-splash/root/etc/init.d/luci_splash6
1 files changed, 4 insertions, 2 deletions
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