blob: 83204b698c1156e900d9d355c1e8bdaff1c76039 (
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$
#
case $2 in
POST-DEINSTALL)
cat <<EOMSG
The phpMyAdmin-suphp port has been deleted.
If you are not upgrading and don't intend to use
phpMyAdmin any more then you may wish to delete
the %%PMA_USR%% account, which can be done with
the following command:
# pw userdel %%PMA_USR%%
EOMSG
if [ -d %%WWWDIR%% ] ; then
echo " # rm -rf %%WWWDIR%%/"
fi
echo
;;
esac
#
# That's All Folks!
#
|