Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/examples/udhcp/sample.renew

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 9 months ago) by niro
File size: 619 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 #!/bin/sh
2 # Sample udhcpc bound script
3
4 RESOLV_CONF="/etc/udhcpc/resolv.conf"
5
6 [ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
7 [ -n "$subnet" ] && NETMASK="netmask $subnet"
8
9 /sbin/ifconfig $interface $ip $BROADCAST $NETMASK
10
11 if [ -n "$router" ]
12 then
13 echo "deleting routers"
14 while /sbin/route del default gw 0.0.0.0 dev $interface
15 do :
16 done
17
18 metric=0
19 for i in $router
20 do
21 /sbin/route add default gw $i dev $interface metric $((metric++))
22 done
23 fi
24
25 echo -n > $RESOLV_CONF
26 [ -n "$domain" ] && echo domain $domain >> $RESOLV_CONF
27 for i in $dns
28 do
29 echo adding dns $i
30 echo nameserver $i >> $RESOLV_CONF
31 done

Properties

Name Value
svn:executable *