Your message dated Thu, 04 Apr 2013 20:09:28 +0100
with message-id <[email protected]>
and subject line Re: Bug#703153: pre-approve: binkd/0.9.11-1.1
has caused the Debian Bug report #703153,
regarding unblock: binkd/0.9.11-1.1
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
703153: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703153
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock
Please unblock package binkd
this is a trivial patch to fix a failure to purge binkd if
/var/log/binkd is empty or missing.
Andreas
unblock binkd/0.9.11-1.1
diff -Nru binkd-0.9.11/debian/binkd.postrm binkd-0.9.11/debian/binkd.postrm
--- binkd-0.9.11/debian/binkd.postrm 2012-05-21 03:52:15.000000000 +0200
+++ binkd-0.9.11/debian/binkd.postrm 2013-03-16 10:53:45.000000000 +0100
@@ -1,8 +1,9 @@
-#!/bin/sh -e
+#!/bin/sh
+set -e
if [ "$1" = purge ]; then
rm -f /var/log/binkd/binkd*
- rmdir --ignore-fail-on-non-empty /var/log/binkd/
+ rmdir --ignore-fail-on-non-empty /var/log/binkd/ 2>/dev/null || true
fi
#DEBHELPER#
diff -Nru binkd-0.9.11/debian/changelog binkd-0.9.11/debian/changelog
--- binkd-0.9.11/debian/changelog 2012-06-29 03:27:33.000000000 +0200
+++ binkd-0.9.11/debian/changelog 2013-03-16 11:09:09.000000000 +0100
@@ -1,3 +1,10 @@
+binkd (0.9.11-1.1) UNRELEASED; urgency=low
+
+ * Non-maintainer upload.
+ * Do not fail to purge if /var/log/binkd does not exist. (Closes: #679590)
+
+ -- Andreas Beckmann <[email protected]> Sat, 16 Mar 2013 10:53:51 +0100
+
binkd (0.9.11-1) unstable; urgency=low
* New upstream release, with minor bug fixes.
--- End Message ---
--- Begin Message ---
On Sat, 2013-03-16 at 12:24 +0100, Julien Cristau wrote:
> On Sat, Mar 16, 2013 at 11:30:06 +0100, Andreas Beckmann wrote:
> > Please unblock package binkd
> >
> > this is a trivial patch to fix a failure to purge binkd if
> > /var/log/binkd is empty or missing.
> >
> There's no need for pre-approval for trivial fixes...
Uploaded and unblocked.
Regards,
Adam
--- End Message ---