#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.5 2002/09/24 00:24:19 marcm Exp $
#

set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin

FILES='
config
'

SPOOLDIR=/var/spool/news

echo
echo "+--------------- $1"
echo "| To fully remove $1 from your system you should also"
echo "| remove the configuration files from the ${SYSCONFDIR} directory"
echo "| as well as the news spool directory ${SPOOLDIR}."
echo "|"
echo "| If you are planning on installing $1 again in the future"
echo "| you can leave them as they are."
echo "|"
echo "| FYI, the following configuration files belong to this package:"
echo "|"
for f in ${FILES}; do
	echo "| ${SYSCONFDIR}/$f"
done
echo "+--------------- $1"
echo

exit 0
