X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=blobdiff_plain;f=package%2Fbase-files%2Ffiles%2Fetc%2Fhotplug.d%2Fiface%2F10-routes;fp=package%2Fbase-files%2Ffiles%2Fetc%2Fhotplug.d%2Fiface%2F10-routes;h=011668218c300841fc2f0df2c77734367540b9e2;hp=9d0ea1d5fe8bdd788bb6759157aea1b1b87700b7;hb=aa9736360e7b7f4d6b327ca1f542856fe8efa357;hpb=eb4ec858a373a13f70751a8bb969ba49ceaba273 diff --git a/package/base-files/files/etc/hotplug.d/iface/10-routes b/package/base-files/files/etc/hotplug.d/iface/10-routes index 9d0ea1d5f..011668218 100644 --- a/package/base-files/files/etc/hotplug.d/iface/10-routes +++ b/package/base-files/files/etc/hotplug.d/iface/10-routes @@ -23,12 +23,11 @@ add_route() { config_get gateway "$interface" gateway } - # handle "0.0.0.0" and "interface" as "no gateway given" - # to allow defining gateway-less routes while still - # keeping the possibility to have static routes with a + # 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" -o \ - "$gateway" = "interface" ] && gateway="" + [ "$gateway" = "0.0.0.0" ] && gateway="" dest="${netmask:+-net "$target" netmask "$netmask"}" dest="${dest:--host "$target"}"