#!/bin/sh
ACTUALCONF=/var/run/resolv.conf
if [ -x /sbin/resolvconf ] ; then
	resolvconf -d $PPP_IFACE
elif [ -f $ACTUALCONF.ppporig ] ; then
	mv $ACTUALCONF.ppporig $ACTUALCONF
fi
