summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-04-19 17:12:02 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-04-19 17:12:02 +0000
commitf40eaba4df29362ca53b84b9b8fa478cf051dac4 (patch)
tree9c6b23530a4930ba7af99aa3c99b941dc77d13c5 /package/base-files/files/etc/hotplug.d
parentb0ea64c2113066d5ce991c9259afe3fa31e4f264 (diff)
downloadmaster-31e0f0ae-f40eaba4df29362ca53b84b9b8fa478cf051dac4.tar.gz
master-31e0f0ae-f40eaba4df29362ca53b84b9b8fa478cf051dac4.tar.bz2
master-31e0f0ae-f40eaba4df29362ca53b84b9b8fa478cf051dac4.zip
fix broken logic in r15272, r15273
SVN-Revision: 15274
Diffstat (limited to 'package/base-files/files/etc/hotplug.d')
-rw-r--r--package/base-files/files/etc/hotplug.d/iface/10-routes9
1 files changed, 4 insertions, 5 deletions
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 9d0ea1d5fe..011668218c 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"}"