From eb594c1c5fba3c31bc785bdc537fcb928f014555 Mon Sep 17 00:00:00 2001 From: Thomas Zimmermann Date: Sat, 27 Mar 2010 17:28:08 +0100 Subject: ppp: make if-up/-down scripts compatible to resolvconf (thx to Wonka) Signed-off-by: Thomas Zimmermann --- recipes/ppp/files/08setupdns | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'recipes/ppp/files/08setupdns') diff --git a/recipes/ppp/files/08setupdns b/recipes/ppp/files/08setupdns index 998219de97..5be2d3831b 100644 --- a/recipes/ppp/files/08setupdns +++ b/recipes/ppp/files/08setupdns @@ -1,7 +1,9 @@ #!/bin/sh ACTUALCONF=/var/run/resolv.conf PPPCONF=/var/run/ppp/resolv.conf -if [ -f $PPPCONF ] ; then +if [ -x /sbin/resolvconf ] ; then + cat $PPPCONF | resolvconf -a $PPP_IFACE +elif [ -f $PPPCONF ] ; then if [ -f $ACTUALCONF ] ; then if [ ! -h $ACTUALCONF -o ! "`readlink $ACTUALCONF 2>&1`" = "$PPPCONF" ] ; then mv $ACTUALCONF $ACTUALCONF.ppporig -- cgit v1.2.3