aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/samples/sample.renew
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/samples/sample.renew')
-rwxr-xr-xnetworking/udhcp/samples/sample.renew30
1 files changed, 0 insertions, 30 deletions
diff --git a/networking/udhcp/samples/sample.renew b/networking/udhcp/samples/sample.renew
deleted file mode 100755
index c953e9758..000000000
--- a/networking/udhcp/samples/sample.renew
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-# Sample udhcpc bound script
-
-RESOLV_CONF="/etc/udhcpc/resolv.conf"
-
-[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
-[ -n "$subnet" ] && NETMASK="netmask $subnet"
-
-/sbin/ifconfig $interface $ip $BROADCAST $NETMASK
-
-if [ -n "$router" ]
-then
- echo "deleting routers"
- while /sbin/route del default gw 0.0.0.0 dev $interface
- do :
- done
-
- for i in $router
- do
- /sbin/route add default gw $i dev $interface
- done
-fi
-
-echo -n > $RESOLV_CONF
-[ -n "$domain" ] && echo domain $domain >> $RESOLV_CONF
-for i in $dns
-do
- echo adding dns $i
- echo nameserver $i >> $RESOLV_CONF
-done \ No newline at end of file