From: Andreas Tille Date: Tue, 11 Feb 2014 16:26:30 +0000 (+0100) Subject: Do not leave any remainings from testing X-Git-Tag: archive/raspbian/0.22.0+ds-1+rpi1~1^2^2~406 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=071c457929ee8dc988c01e8bca2cfe9b95e3bc59;p=python-pysam.git Do not leave any remainings from testing --- diff --git a/debian/python-pysam-tests.postrm b/debian/python-pysam-tests.postrm new file mode 100644 index 0000000..d11fc7c --- /dev/null +++ b/debian/python-pysam-tests.postrm @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +case "$1" in + purge|remove|upgrade) + rm -rf /var/lib/pysam/tests + ;; + failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0