[package] base-files: use uci_get() wrapper (#7312)
[openwrt.git] / package / base-files / files / etc / hotplug.d / iface / 10-routes
index f871ca5..0116682 100644 (file)
@@ -23,6 +23,12 @@ add_route() {
                config_get gateway "$interface" gateway
        }
 
+       # handle "0.0.0.0" as "no gateway given" to allow
+       # defining gateway-less routes while still keeping
+       # the possibility to have static routes with a
+       # proper gateway on interfaces with dynamic ips 
+       [ "$gateway" = "0.0.0.0" ] && gateway=""
+
        dest="${netmask:+-net "$target" netmask "$netmask"}"
        dest="${dest:--host "$target"}"
        
This page took 0.021255 seconds and 4 git commands to generate.