]> git.saurik.com Git - apt.git/blobdiff - debian/postrm
Added 'python-apt' to Suggests of apt (because of apt-mark).
[apt.git] / debian / postrm
index 625280034f6bf969ceab5c34af38af945a5388c2..8b921dda15f8928983eacaec1811fac520d861de 100755 (executable)
@@ -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