From: Joerg Jaspert Date: Sat, 3 May 2008 20:28:50 +0000 (+0200) Subject: Do not allow o-p-u-new to break dinstall X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=sidebyside;h=795bf82dd7abd38a25833a667dc3876935c24563;hp=--cc;p=dak.git Do not allow o-p-u-new to break dinstall --- 795bf82dd7abd38a25833a667dc3876935c24563 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 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 ################################################################################