#!/bin/sh

set -e

if [ "$1" = "remove" ] ; then
    # remove files created in postinst
    rm -rf /usr/share/metaphlan2/db_v20/*.bt2
fi

# purge the config file which is created in the postinst script
if [ "$1" = "purge" ] ; then
    rm -f /etc/metaphlan2/metaphlan2-data.conf
    # remove files created in postinst
    rm -rf /usr/share/metaphlan2/db_v20/*.bt2
fi

if [ "$1" = "purge" ] && [ -e /usr/share/debconf/confmodule ]; then
    # Source debconf library.
    . /usr/share/debconf/confmodule
    # Remove my changes to the db.
    db_purge
fi

#DEBHELPER#
