#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.2 2001/09/20 20:01:22 naddy Exp $
#

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

    echo
    echo "+--------------- $1"
    echo "| To really remove $1 from your system you should also"
    echo "| remove the configuration files from the ${SYSCONFDIR} directory."
    echo "| If you are planning on installing $1 again in the future"
    echo "| you can leave it as it is."
    echo "|"
    echo "| FYI, the following configuration files belongs to this package:"
    echo "|"
    for f in \
	oaf/oaf-config.xml \
	oaf/oaf-config.xml.sample
    do
	echo "| ${SYSCONFDIR}/$f"
    done
    echo "+--------------- $1"
    echo

exit 0
