#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.4 2002/03/26 18:39:12 nino Exp $
#

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

FILES='
oaf/oaf-config.xml
'
    echo
    echo "+--------------- $1"
    echo "| To really remove $1 from your system you should also"
    echo "| remove the configuration files from the /etc directory."
    echo "| Remove the directory in which the files reside as well if empty."
    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 ${FILES}; do
	echo "| /etc/$f"
    done
    echo "+--------------- $1"
    echo

exit 0
