aboutsummaryrefslogtreecommitdiffstats
path: root/root/usr/share/udhcpc
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2005-10-17 12:24:08 +0000
committerImre Kaloz <kaloz@openwrt.org>2005-10-17 12:24:08 +0000
commit15bee86fc3df92f0bbdf0a17eac3915965983396 (patch)
tree6a621c91d22f093f023a29c72252ea47ba9fb32a /root/usr/share/udhcpc
parent487c71693d31836144cd0a55ae73b76c64f71561 (diff)
downloadupstream-15bee86fc3df92f0bbdf0a17eac3915965983396.tar.gz
upstream-15bee86fc3df92f0bbdf0a17eac3915965983396.tar.bz2
upstream-15bee86fc3df92f0bbdf0a17eac3915965983396.zip
removed the old directories, too.. cleanup is ready, yay
SVN-Revision: 2130
Diffstat (limited to 'root/usr/share/udhcpc')
-rwxr-xr-xroot/usr/share/udhcpc/default.script38
1 files changed, 0 insertions, 38 deletions
diff --git a/root/usr/share/udhcpc/default.script b/root/usr/share/udhcpc/default.script
deleted file mode 100755
index 87be32d1ad..0000000000
--- a/root/usr/share/udhcpc/default.script
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-# udhcpc script edited by Tim Riker <Tim@Rikers.org>
-# (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