X-Git-Url: http://git.hcoop.net/ntk/apt.git/blobdiff_plain/1156d969749480f1fbe6c5d37dcd54e6ac411cb9..1edc38abff0bffd56ad7a128f6243050d4064827:/debian/postrm diff --git a/debian/postrm b/debian/postrm index bc6fa289..ae1e18d3 100755 --- a/debian/postrm +++ b/debian/postrm @@ -8,15 +8,15 @@ # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. +set -e + #DEBHELPER# case "$1" in + remove) + ;; purge) - echo -n "Removing APT cache and state files... " - echo -n "/var/cache/apt" rm -rf /var/cache/apt - echo -n ", /var/lib/apt" rm -rf /var/lib/apt - echo ". Done." esac