#! /bin/sh

# dns-clean by John Hasler Wed Jun 30 1999.  You may treat
# this program as if it was in the public domain.

# dns-clean should be run at bootup to clean up any mess left by 0dns-up.
# It should be run before ppp is started.

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

test -f /usr/sbin/pppconfig || exit 0

set -e

case "$1" in
  start)
	echo "Running dns-clean."
	/etc/ppp/ip-down.d/0dns-down || exit 0
	;;
  stop|restart|force-reload)
	;;
  *)
        ;;
esac

exit 0



