#!/bin/sh

set -e

# Source debconf library.
. /usr/share/debconf/confmodule

case "$1" in
    purge)
    # Remove all
    if [ -e /usr/share/biomaj ]; then
    rm -rf /usr/share/biomaj
    fi
    echo "Warning, BioMAJ database for MySQL is not deleted by process removal."
    ;;
    remove|upgrade|failed-upgrade|abort-install|disappear)
    echo "Warning, BioMAJ database for MySQL is not deleted by process removal."    ;;
    abort-upgrade)
    ;;
    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac



#DEBHELPER#

