ports/net/phpldapadmin/files/pkg-deinstall.in
Sam Lawrance 4992047d94 Update to 0.9.7.2
PR:		ports/90251
Submitted by:	Matthew Seaman <m.seaman@infracaninophile.co.uk> (maintainer)
2005-12-11 23:51:12 +00:00

26 lines
561 B
Bash

#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/net/phpldapadmin/files/pkg-deinstall.in,v 1.1 2005-12-11 23:51:12 lawrance 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 %%PLAUSR%% account, which can be done with
the following command:
# pw userdel %%PLAUSR%%
EOMSG
if [ -d %%PREFIX%%/%%PLADIR%% ] ; then
echo " # rm -rf %%PREFIX%%/%%PLADIR%%/"
fi
echo
;;
esac
#
# That's All Folks!
#