Author: tille Date: 2008-07-23 06:13:08 +0000 (Wed, 23 Jul 2008) New Revision: 2286
Added: trunk/packages/arb/trunk/debian/arb-common.postrm Modified: trunk/packages/arb/trunk/debian/changelog Log: Remove all files on purge - piuparts detected remaining files in /var/lib Added: trunk/packages/arb/trunk/debian/arb-common.postrm =================================================================== --- trunk/packages/arb/trunk/debian/arb-common.postrm (rev 0) +++ trunk/packages/arb/trunk/debian/arb-common.postrm 2008-07-23 06:13:08 UTC (rev 2286) @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# In case arb should be purged remove all stuff it might have dropped +# in /var/lib + +if [ "$1" = "purge" ] && [ -d /var/lib/arb ]; then + rm -rf /var/lib/arb +fi + +#DEBHELPER# Modified: trunk/packages/arb/trunk/debian/changelog =================================================================== --- trunk/packages/arb/trunk/debian/changelog 2008-07-22 14:19:23 UTC (rev 2285) +++ trunk/packages/arb/trunk/debian/changelog 2008-07-23 06:13:08 UTC (rev 2286) @@ -1,3 +1,11 @@ +arb (0.0.20071207.1-4) unstable; urgency=low + + * debian/arb-common.postrm: Remove stuff arb leaves behind in + /var/lib in case the package is purged + Closes: #463010 + + -- Andreas Tille <[EMAIL PROTECTED]> Wed, 23 Jul 2008 08:10:46 +0200 + arb (0.0.20071207.1-3) unstable; urgency=low [ Charles Plessy ] _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit
