Package: apt-file Version: 2.0.7 Severity: important Tags: patch apt-file doesn't remove any of its cached Contents datafiles on purge. Indeed, it doesn't have any postremoval script. The following would be sufficient:
#! /bin/sh
# postremoval script for apt-file
set -e;
if [ "purge" = "$1" ]; then
rm -fr /var/cache/apt/apt-file/
fi;
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

