freebsd-ports/net/phpldapadmin098/pkg-deinstall-suphp
Thierry Thomas 0387618a5b - Improve handling of config files, making them not world readable
by default.

- Add a WITH_SUPHP option.

PR:		ports/66758
Submitted by:	maintainer.
2004-05-20 16:31:30 +00:00

27 lines
464 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
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!
#