freebsd-ports/databases/phpmyadmin/files/pkg-deinstall.in
Thierry Thomas 8603006888 - Update to phpmyadmin-2.6.1.pl3 which corrects some pugs introduced
with the security patches in pl2.  Announcement is at:

    http://sourceforge.net/mailarchive/forum.php?thread_id=6732974&forum_id=2141

Release Notes:

    http://www.phpmyadmin.net/home_page/downloads.php?relnotes=0

- add OPTIONS support for the PHP MCRYPT and MBSTRING modules,
      both of which are can be used by recent versions of phpMyAdmin.

PR:		ports/78445
Submitted by:	Matthew Seaman (maintainer)
2005-03-06 10:48:47 +00:00

26 lines
468 B
Bash

#!/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 %%MYADMUSR%% account, which can be done with
the following command:
# pw userdel %%MYADMUSR%%
EOMSG
if [ -d %%PREFIX%%/%%MYADMDIR%% ] ; then
echo " # rm -rf %%PREFIX%%/%%MYADMDIR%%/"
fi
echo
;;
esac
#
# That's All Folks!
#