freebsd-ports/www/interchange/pkg-deinstall
Sergey Matveychuk 9311a87bb9 - Update to 5.2.0
- OPTIONSfy
- Pass maintainership to submitter

PR:		ports/86204
Submitted by:	loader <loader@freebsdmall.com>
2005-09-21 12:19:06 +00:00

18 lines
390 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
USER=interch
# Don't delete it, there may be ${USER} owned files around.
pw usershow "${USER}" >/dev/null 2>&1 \
&& echo -e "*\n\
* To clean up the Interchange from your filesystem, run 'rm -fr ${PKG_PREFIX}/interchange.' \n\
* To delete the user '${USER}' permanently, use 'pw userdel ${USER}'.\n*"
exit 0