#! /bin/sh -e # This script is called twice during the removal of the package; once # after the removal of the package's files from the system, and as # the final step in the removal of this package, after the package's # conffiles have been removed. # 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 case "$1" in (remove) # ldconfig would clean this up the next time it's run, but # we remove it to make piuparts stop complaining rm -f /usr/lib/libfakeroot-0.so ;; (purge|disappear|upgrade|failed-upgrade|abort-install|abort-upgrade) : ;; (*) echo "$0: didn't understand being called with \`$1'" 1>&2 exit 0;; esac exit 0