diff options
author | Thomas Zimmermann <ml@vdm-design.de> | 2010-03-27 17:28:08 +0100 |
---|---|---|
committer | Thomas Zimmermann <ml@vdm-design.de> | 2010-03-27 17:28:08 +0100 |
commit | eb594c1c5fba3c31bc785bdc537fcb928f014555 (patch) | |
tree | 9c9933536f3ddfc4baeaf8eb008bd96487ae4728 /recipes/ppp/files/08setupdns | |
parent | f28a367b54624446c66d0939ee8d229da4e982ce (diff) |
ppp: make if-up/-down scripts compatible to resolvconf (thx to Wonka)
Signed-off-by: Thomas Zimmermann <ml@vdm-design.de>
Diffstat (limited to 'recipes/ppp/files/08setupdns')
-rw-r--r-- | recipes/ppp/files/08setupdns | 4 |
1 files changed, 3 insertions, 1 deletions
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 |