From 4dfec84a14860c8b430a4987312ce36a1fc74884 Mon Sep 17 00:00:00 2001 From: brad Date: Sat, 8 Apr 2000 05:41:34 +0000 Subject: [PATCH] tell the end user to remove the database dir as well --- databases/mysql/pkg/DEINSTALL | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/databases/mysql/pkg/DEINSTALL b/databases/mysql/pkg/DEINSTALL index a3214492cbe..895259806a7 100644 --- a/databases/mysql/pkg/DEINSTALL +++ b/databases/mysql/pkg/DEINSTALL @@ -1,22 +1,25 @@ -# $OpenBSD: DEINSTALL,v 1.1 2000/01/01 05:54:13 brad Exp $ +# $OpenBSD: DEINSTALL,v 1.2 2000/04/08 05:41:34 brad Exp $ # # MySQL de-installation set -e PATH=/bin:/usr/bin:/sbin:/usr/sbin PREFIX=${PKG_PREFIX:-/usr/local} +DB_DIR=${PKG_DB_DIR:-/var/mysql} -echo -echo "+---------------" -echo "| To completely deinstall the $1 package you need to perform" -echo "| these steps as root:" -echo "|" -echo "| rmuser mysql" -echo "| rmgroup mysql" -echo "|" -echo "| Do not do this if you plan on re-installing $1" -echo "| at some future time." -echo "+---------------" -echo - +if [ -d ${DB_DIR} ]; then + echo + echo "+---------------" + echo "| To completely deinstall the $1 package you need to perform" + echo "| these steps as root:" + echo "|" + echo "| rmuser mysql" + echo "| rmgroup mysql" + echo "| rm -rf ${DB_DIR}" + echo "|" + echo "| Do not do this if you plan on re-installing $1" + echo "| at some future time." + echo "+---------------" + echo +fi exit 0