summaryrefslogtreecommitdiff
path: root/src/rootfs_skel/usr/share/udhcpc/default.script
blob: 5df5366b23e298e091cfb01715f29b26f8ee8102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/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"

nfs_rootfs()
{
	grep -qe '/ nfs .*' /proc/mounts
}

case "$1" in
	deconfig)
		if ! nfs_rootfs; then
			/sbin/ifconfig $interface 0.0.0.0
		fi
		;;

	renew|bound)
		/sbin/ifconfig $interface $ip $BROADCAST $NETMASK

		if [ -n "$router" ] ; then
			if ! nfs_rootfs; then
				echo "deleting routers"
				while route del default gw 0.0.0.0 dev $interface ; do
					:
				done
			fi

			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