X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/2d18d44ecd4bfe976805024279e5118d11be26b9..1350057372b095f718c0073a704f2c1960c04c81:/debian/postrm diff --git a/debian/postrm b/debian/postrm index 625280034..8b921dda1 100755 --- a/debian/postrm +++ b/debian/postrm @@ -8,13 +8,13 @@ # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. +#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/state/apt" - rm -rf /var/state/apt - echo ". Done." + rm -rf /var/lib/apt esac