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/92removedns | |
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/92removedns')
-rw-r--r-- | recipes/ppp/files/92removedns | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes/ppp/files/92removedns b/recipes/ppp/files/92removedns index 2eadec6899..aa3304db76 100644 --- a/recipes/ppp/files/92removedns +++ b/recipes/ppp/files/92removedns @@ -1,5 +1,7 @@ #!/bin/sh ACTUALCONF=/var/run/resolv.conf -if [ -f $ACTUALCONF.ppporig ] ; then +if [ -x /sbin/resolvconf ] ; then + resolvconf -d $PPP_IFACE +elif [ -f $ACTUALCONF.ppporig ] ; then mv $ACTUALCONF.ppporig $ACTUALCONF fi |