ports/net/phpldapadmin098/files/pkg-deinstall.in
Rong-En Fan a620c0c128 - Use fixed UID when WITH_SUPHP
- Use WWWDIR for PLIST_SUB and SUB_LIST
- Various port clean-up

PR:		ports/120505
Submitted by:	Matthew Seaman <m.seaman at infracaninophile.co.uk> (maintainer)
2008-03-09 04:45:39 +00:00

26 lines
547 B
Bash

#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/net/phpldapadmin098/files/Attic/pkg-deinstall.in,v 1.2 2008-03-09 04:45:39 rafan Exp $
#
case $2 in
POST-DEINSTALL)
cat <<EOMSG
The phpldapadmin-suphp port has been deleted.
If you are not upgrading and don't intend to use
phpLDAPadmin any more then you may wish to delete
the %%PLA_USR%% account, which can be done with
the following command:
# pw userdel %%PLA_USR%%
EOMSG
if [ -d %%WWWDIR%% ] ; then
echo " # rm -rf %%WWWDIR%%/"
fi
echo
;;
esac
#
# That's All Folks!
#