[package] base-files: remove redundant netmask handling in 10-routes
[openwrt.git] / package / base-files / files / etc / hotplug.d / iface / 10-routes
index dd6ae50..f871ca5 100644 (file)
@@ -23,11 +23,11 @@ add_route() {
                config_get gateway "$interface" gateway
        }
 
                config_get gateway "$interface" gateway
        }
 
-       netmask="${netmask:-255.255.255.255}"
        dest="${netmask:+-net "$target" netmask "$netmask"}"
        dest="${dest:--host "$target"}"
        
        dest="${netmask:+-net "$target" netmask "$netmask"}"
        dest="${dest:--host "$target"}"
        
-       /sbin/route add $dest gw "$gateway" ${dev:+dev "$dev"} ${metric:+ metric "$metric"}
+       /sbin/route add $dest ${gateway:+gw "$gateway"} \
+               ${dev:+dev "$dev"} ${metric:+ metric "$metric"}
 }
 
 add_route6() {
 }
 
 add_route6() {
@@ -54,7 +54,8 @@ add_route6() {
                config_get gateway "$interface" gateway
        }
 
                config_get gateway "$interface" gateway
        }
 
-       /sbin/route -A inet6 add $target ${gateway:+gw "$gateway"} ${dev:+dev "$dev"} ${metric:+ metric "$metric"}
+       /sbin/route -A inet6 add $target ${gateway:+gw "$gateway"} \
+               ${dev:+dev "$dev"} ${metric:+ metric "$metric"}
 }
 
 case "$ACTION" in
 }
 
 case "$ACTION" in
This page took 0.02823 seconds and 4 git commands to generate.