Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package automysqlbackup. The new version in SID fixes: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=633450 Debdiff is quite small, and attached to this bug. I'm not sure what is the current freeze policy at this stage, if we are in a too deep freeze, then I would understand if the unblock was not accepted. Just let me know. Please unblock automysqlbackup/2.6+debian.2-2 Thomas Goirand (zigo)
diff -Nru automysqlbackup-2.6+debian.2/debian/changelog automysqlbackup-2.6+debian.2/debian/changelog --- automysqlbackup-2.6+debian.2/debian/changelog 2012-05-25 11:59:17.000000000 +0000 +++ automysqlbackup-2.6+debian.2/debian/changelog 2013-02-01 05:25:15.000000000 +0000 @@ -1,3 +1,10 @@ +automysqlbackup (2.6+debian.2-2) unstable; urgency=low + + * Cronjob exits without error after package removal, thanks to Holger Levsen + for reporting the issue and Andreas Beckmann for the patch (Closes: #633450). + + -- Thomas Goirand <z...@debian.org> Fri, 01 Feb 2013 05:20:13 +0000 + automysqlbackup (2.6+debian.2-1) unstable; urgency=low * Doesn't backup the performance_schema and information_schema databases by diff -Nru automysqlbackup-2.6+debian.2/debian/cron.daily automysqlbackup-2.6+debian.2/debian/cron.daily --- automysqlbackup-2.6+debian.2/debian/cron.daily 2012-05-25 11:59:17.000000000 +0000 +++ automysqlbackup-2.6+debian.2/debian/cron.daily 2013-02-01 05:25:15.000000000 +0000 @@ -1,2 +1,3 @@ #!/bin/sh -test -x /usr/sbin/automysqlbackup && /usr/sbin/automysqlbackup +test -x /usr/sbin/automysqlbackup || exit 0 +/usr/sbin/automysqlbackup