tell the end user to remove the database dir as well
This commit is contained in:
parent
db13e80428
commit
4dfec84a14
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user