#!/bin/sh
set -e

case "$1" in
    remove|deconfigure)
        SPC_PKG_NAME="test-automation-suite"
        SPC_PKG_VERSION_WITH_REV="2.0.1"
        SPC_PKG_VERSION="2.0.1"

        

        # AUTOMATICALLY GENERATED PRE-REMOVE CODE
        # SPC: Autogenerated unlinking
        unlink "/etc/apt/sources.list.d/deb-intern.sources" || true



        find /usr/lib/python3/spc-packages/test_automation_suite -type d -name '__pycache__' -exec rm -r {} +
        find /usr/lib/python3/dist-packages/test_automation_suite -type d -name '__pycache__' -exec rm -r {} +
        # END OF AUTOMATICALLY GENERATED PRE-REMOVE CODE

    ;;

    upgrade|failed-upgrade)
    ;;

    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0
