#!/bin/sh
RESOLV_CONF=/etc/resolv.conf
if [ -f $RESOLV_CONF.pppbak ]; then
        mv $RESOLV_CONF.pppbak $RESOLV_CONF
fi
exit 0
