#! /bin/sh # postrm script for apt-p2p # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' overwrit>r> # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package if test "$1" = "purge"; then # Remove the logs rm -rf /var/log/apt-p2p.log* echo Purging apt-p2p cache directory rm -rf /var/cache/apt-p2p if id apt-p2p >/dev/null; then deluser apt-p2p fi fi # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0