From 795bf82dd7abd38a25833a667dc3876935c24563 Mon Sep 17 00:00:00 2001
From: Joerg Jaspert <joerg@debian.org>
Date: Sat, 3 May 2008 22:28:50 +0200
Subject: [PATCH] Do not allow o-p-u-new to break dinstall

---
 ChangeLog                   | 1 +
 config/debian/cron.dinstall | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 77132d17..8c5ed420 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@
 	daily for some time now. And while dinstall is an OLD name, its
 	recognized pretty well within Debian
 	Also add some more timing information
+	Do not allow automated [o-]p-u-new processing to break dinstall
 
 2008-05-03  Thomas Viehmann  <tv@beamnet.de>
 
diff --git a/config/debian/cron.dinstall b/config/debian/cron.dinstall
index d8a69d62..8813d519 100755
--- a/config/debian/cron.dinstall
+++ b/config/debian/cron.dinstall
@@ -65,14 +65,14 @@ TS=$(($TS+1)); echo Archive maintenance timestamp $TS: $(date +%X)
 echo "Doing automated p-u-new processing"
 cd $queuedir/p-u-new
 date -u -R >> REPORT
-dak process-new -a -C COMMENTS >> REPORT
+dak process-new -a -C COMMENTS >> REPORT || true
 echo >> REPORT
 
 TS=$(($TS+1)); echo Archive maintenance timestamp $TS: $(date +%X)
 echo "Doing automated o-p-u-new processing"
 cd $queuedir/o-p-u-new
 date -u -R >> REPORT
-dak process-new -a -C COMMENTS >> REPORT
+dak process-new -a -C COMMENTS >> REPORT || true
 echo >> REPORT
 
 ################################################################################
-- 
2.39.5