From: Cameron Dale Date: Sat, 26 Apr 2008 03:10:23 +0000 (-0700) Subject: Fix a postrm bug due to debconf generating errors if the apt-p2p user is missing. X-Git-Url: https://git.mxchange.org/?p=quix0rs-apt-p2p.git;a=commitdiff_plain;h=6573b9d12bf656557a584c6c1a469ba2e66ca2b9 Fix a postrm bug due to debconf generating errors if the apt-p2p user is missing. --- diff --git a/debian/postrm b/debian/postrm index fa48524..c2ea957 100644 --- a/debian/postrm +++ b/debian/postrm @@ -17,6 +17,11 @@ set -e # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + if test "$1" = "purge"; then # Remove the logs rm -rf /var/log/apt-p2p.log* @@ -29,9 +34,4 @@ if test "$1" = "purge"; then fi fi -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - exit 0