tags 722594 patch thanks Hi,
here is a patch for removing files when purging. Regards, Christophe diff --git a/debian/postrm b/debian/postrm new file mode 100644 index 0000000..6f3536a --- /dev/null +++ b/debian/postrm @@ -0,0 +1,9 @@ +#! /bin/sh +# postrm script for how-can-i-help + +set -e + +case "$1" in + purge) if [ -d /var/lib/how-can-i-help ]; then rm -r /var/lib/how-can-i-help; fi;; +esac -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

