#! /bin/sh -e

if [ "$1" = "purge" ]; then
    # remove log file
    rm -f /var/log/pycentral.log
    rm -f /usr/share/pycentral-data/pyversions.pyc
    if [ -d /var/lib/pycentral ]; then
	rm -f /var/lib/pycentral/delayed-pkgs
	rm -f /var/lib/pycentral/pkgremove
	rmdir --ignore-fail-on-non-empty /var/lib/pycentral || true
    fi
fi

#DEBHELPER#
