aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/ppp/ppp-2.4.5/08setupdns
blob: 998219de97294a292f070309bddb3282ca80b960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
ACTUALCONF=/var/run/resolv.conf
PPPCONF=/var/run/ppp/resolv.conf
if [ -f $PPPCONF ] ; then
	if [ -f $ACTUALCONF ] ; then
		if [ ! -h $ACTUALCONF -o ! "`readlink $ACTUALCONF 2>&1`" = "$PPPCONF" ] ; then
			mv $ACTUALCONF $ACTUALCONF.ppporig
		fi
	fi

	ln -sf $PPPCONF $ACTUALCONF
fi