fix broken logic in r15272, r15273

SVN-Revision: 15274
lede-17.01
Jo-Philipp Wich 2009-04-19 17:12:02 +00:00
parent b0ea64c211
commit f40eaba4df
1 changed files with 4 additions and 5 deletions

View File

@ -23,12 +23,11 @@ add_route() {
config_get gateway "$interface" gateway config_get gateway "$interface" gateway
} }
# handle "0.0.0.0" and "interface" as "no gateway given" # handle "0.0.0.0" as "no gateway given" to allow
# to allow defining gateway-less routes while still # defining gateway-less routes while still keeping
# keeping the possibility to have static routes with a # the possibility to have static routes with a
# proper gateway on interfaces with dynamic ips # proper gateway on interfaces with dynamic ips
[ "$gateway" = "0.0.0.0" -o \ [ "$gateway" = "0.0.0.0" ] && gateway=""
"$gateway" = "interface" ] && gateway=""
dest="${netmask:+-net "$target" netmask "$netmask"}" dest="${netmask:+-net "$target" netmask "$netmask"}"
dest="${dest:--host "$target"}" dest="${dest:--host "$target"}"