Add notice about removing /var/db/gconf. Spotted by brad@

This commit is contained in:
nino 2002-09-04 08:43:23 +00:00
parent 53e557c542
commit 02c74db0ad

View File

@ -1,27 +1,32 @@
#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.2 2001/09/20 19:23:32 naddy Exp $
# $OpenBSD: DEINSTALL,v 1.3 2002/09/04 08:43:23 nino 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 \
gconf/1/path \
gconf/schemas/desktop.schemas
do
echo "| ${SYSCONFDIR}/$f"
done
echo "+--------------- $1"
echo
echo
echo "+--------------- $1"
echo "| If you don't have any local applications that uses gconf"
echo "| you should now perform the following step as root:"
echo "|"
echo "| rm -rf /var/db/gconf"
echo "|"
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 \
gconf/1/path \
gconf/schemas/desktop.schemas
do
echo "| ${SYSCONFDIR}/$f"
done
echo "+--------------- $1"
echo
exit 0