openbsd-ports/audio/disc-cover/pkg/DEINSTALL

26 lines
578 B
Plaintext
Raw Normal View History

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1.1.1 2001/08/16 21:56:35 pvalchev Exp $
#
# disc-cover de-installation
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_DIR=${SYSCONFDIR}
if [ -d $CONFIG_DIR ]; then
echo
echo "+---------------"
echo "| To completely deinstall the $1 package your users need"
echo "| to perform this step:"
echo "|"
echo "| rm ~/.cdserverrc"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
echo "+---------------"
echo
fi
exit 0