mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 09:30:30 -04:00
- 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)
26 lines
547 B
Bash
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!
|
|
#
|