#!/bin/sh
# postinst script for pagekite
#
# see: dh_installdeb(1)

set -e

case "$1" in
    *)
        rm -f /usr/lib/python2.*/dist-packages/sockschain || true
        rm -f /usr/share/pyshared/sockschain || true
    ;;

    UNUSED)
        echo "WARNING: postinst called with unknown argument \`$1'" >&2
    ;;

esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0
