diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-05-11 02:09:39 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-05-11 02:09:39 +0000 |
commit | e3412d8331d7b59c2779bd8244b8b367ce2a128e (patch) | |
tree | 7854c9784fd91db6a6073e12a9f82a0576b30db1 /networking/udhcp/samples/simple.script | |
parent | 6143c0719befdac69e43d878d912e6abf5cce378 (diff) | |
download | busybox-e3412d8331d7b59c2779bd8244b8b367ce2a128e.tar.gz |
remove files not related to busybox
Diffstat (limited to 'networking/udhcp/samples/simple.script')
-rw-r--r-- | networking/udhcp/samples/simple.script | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/networking/udhcp/samples/simple.script b/networking/udhcp/samples/simple.script deleted file mode 100644 index a52a7f812..000000000 --- a/networking/udhcp/samples/simple.script +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh - -# udhcpc script edited by Tim Riker <Tim@Rikers.org> - -[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1 - -RESOLV_CONF="/etc/resolv.conf" -[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast" -[ -n "$subnet" ] && NETMASK="netmask $subnet" - -case "$1" in - deconfig) - /sbin/ifconfig $interface 0.0.0.0 - ;; - - renew|bound) - /sbin/ifconfig $interface $ip $BROADCAST $NETMASK - - 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 - [ -n "$domain" ] && echo search $domain >> $RESOLV_CONF - for i in $dns ; do - echo adding dns $i - echo nameserver $i >> $RESOLV_CONF - done - ;; -esac - -exit 0 |