#!/bin/sh

# 0dns-down by John Hasler 4 Apr 1999.  You may treat this program as if it
# was in the public domain.

# 0dns-down takes down what 0dns-up sets up.

# If pppconfig has been removed we are not supposed to do anything.

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

ETC="/etc"
RESOLVCONF="$ETC/resolv.conf-dnsmasq"

test -f "$RESOLVCONF" && rm -f $RESOLVCONF