blob: 79aa1f894cc8257519a1c5de413a186b48e4f40f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/net/phpldapadmin098/files/Attic/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!
#
|