freebsd-ports/www/interchange/pkg-deinstall
Nicola Vitale 620d4f39c3 - Updated to 5.4.1
- Added files/interchange.sh.in
- Removed files/interchange.sh

PR:		ports/108665
Submitted by:	loader <loader at freebsdmall.com> (maintainer)
Approved by:	alexbl (mentor, implicit)
2007-02-02 16:46:22 +00:00

22 lines
425 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'
* and 'rm -fr /var/run/interchange'
*
* To delete the user '${USER}' permanently,
* use 'pw userdel ${USER}'.\n"
exit 0