diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-11 16:32:33 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-11 16:32:33 +0000 |
commit | 61dd826bf4a20ae0af8ca7fb76615e48e32cfdce (patch) | |
tree | 99fa4bc10b4da8ca51605fbac64bd0eb4e73f77e /openwrt/package/base-files | |
parent | 8121f9e79b694b2e9fca3923903d7da6d6821e2c (diff) |
Interface was hardcoded, (cut/paste from the testing openwrt machine)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2914 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files')
-rwxr-xr-x | openwrt/package/base-files/default/usr/share/udhcpc/default.script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/usr/share/udhcpc/default.script b/openwrt/package/base-files/default/usr/share/udhcpc/default.script index 304be1197e..cef2c2ed25 100755 --- a/openwrt/package/base-files/default/usr/share/udhcpc/default.script +++ b/openwrt/package/base-files/default/usr/share/udhcpc/default.script @@ -27,7 +27,7 @@ case "$1" in if [ -n "$router" ] ; then - if [ "$router" != "$(route -n | grep '^0.0.0.0' | grep vlan1 | awk '{ print $2 }')" ] ; then + if [ "$router" != "$(route -n | grep '^0.0.0.0' | grep $interface | awk '{ print $2 }')" ] ; then echo "deleting routers" while route del default gw 0.0.0.0 dev $interface ; do :; done for i in $router ; do |