fix documentation for APT::Periodic::MaxSize "0" (closes: #740551)
[ntk/apt.git] / debian / postrm
index b1bb971..ae1e18d 100755 (executable)
@@ -8,13 +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