From 071c457929ee8dc988c01e8bca2cfe9b95e3bc59 Mon Sep 17 00:00:00 2001 From: Andreas Tille Date: Tue, 11 Feb 2014 17:26:30 +0100 Subject: [PATCH] Do not leave any remainings from testing --- debian/python-pysam-tests.postrm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 debian/python-pysam-tests.postrm 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 -- 2.30.2