From bf3eda107c10e5d73c716744bfadaee4b4ab0093 Mon Sep 17 00:00:00 2001 From: kaloz Date: Mon, 17 Oct 2005 12:24:08 +0000 Subject: removed the old directories, too.. cleanup is ready, yay git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2130 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- root/usr/share/udhcpc/default.script | 38 ------------------------------------ 1 file changed, 38 deletions(-) delete mode 100755 root/usr/share/udhcpc/default.script (limited to 'root/usr') diff --git a/root/usr/share/udhcpc/default.script b/root/usr/share/udhcpc/default.script deleted file mode 100755 index 87be32d1a..000000000 --- a/root/usr/share/udhcpc/default.script +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh -# udhcpc script edited by Tim Riker -# (slightly modified) - -[ -z "$1" ] && echo "Error: should be run by udhcpc" && exit 1 - -RESOLV_CONF="/tmp/resolv.conf" - -case "$1" in - deconfig) - ifconfig $interface 0.0.0.0 - ;; - - renew|bound) - ifconfig $interface $ip \ - ${broadcast:+broadcast $broadcast} \ - ${subnet:+netmask $subnet} - - if [ -n "$router" ] ; then - echo "deleting routers" - while route del default gw 0.0.0.0 dev $interface ; do - : - done - - for i in $router ; do - route add default gw $i dev $interface - done - fi - - echo -n > $RESOLV_CONF - ${domain:+echo search $domain >> $RESOLV_CONF} - for i in $dns ; do - echo adding dns $i - echo nameserver $i >> $RESOLV_CONF - done - ;; -esac -exit 0 -- cgit v1.2.3