2002-08-31 13:25:57 +02:00
|
|
|
#!/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 \
|
2005-09-21 14:19:06 +02:00
|
|
|
&& 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*"
|
2002-08-31 13:25:57 +02:00
|
|
|
|
|
|
|
exit 0
|