#!/bin/sh
#
# $FreeBSD: databases/phpmyadmin/files/pkg-deinstall.in 300896 2012-07-14 13:54:48Z beat $
#

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  account, which can be done with
the following command:

    # pw userdel 
EOMSG
    if [ -d /usr/local/www/phpMyAdmin ] ; then
	echo "    # rm -rf /usr/local/www/phpMyAdmin/"
    fi
    echo
    ;;
esac

#
# That's All Folks!
#
