From 72ae9cfd9301e042d0782eeb9bee35e940bfd28c Mon Sep 17 00:00:00 2001 From: James Troup Date: Fri, 16 Jun 2006 04:52:33 +0100 Subject: [PATCH] Disembargoed queue support. --- config/debian-security/cron.unchecked | 32 +++++++++++++++++++-------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/config/debian-security/cron.unchecked b/config/debian-security/cron.unchecked index 5b280086..9f91e688 100755 --- a/config/debian-security/cron.unchecked +++ b/config/debian-security/cron.unchecked @@ -4,19 +4,33 @@ set -e export SCRIPTVARS=/org/security.debian.org/dak/config/debian-security/vars . $SCRIPTVARS +report=$queuedir/REPORT +reportdis=$queuedir/REPORT.disembargo +timestamp=$(date "+%Y-%m-%d %H:%M") +doanything=false + cd $unchecked +changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs) +if [ -n "$changes" ]; then + doanything=true + echo "$timestamp": "$changes" >> $report + dak process-unchecked -a $changes >> $report + echo "--" >> $report +fi +cd $disembargo changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs) -report=$queuedir/REPORT -timestamp=$(date "+%Y-%m-%d %H:%M") -if [ -z "$changes" ]; then - echo "$timestamp": Nothing to do >> $report - exit 0; -fi; +if [ -n "$changes" ]; then + doanything=true + echo "$timestamp": "$changes" >> $reportdis + dak process-unchecked -a $changes >> $reportdis + echo "--" >> $reportdis +fi -echo "$timestamp": "$changes" >> $report -dak process-unchecked -a $changes >> $report -echo "--" >> $report +if ! $doanything; then + echo "$timestamp": Nothing to do >> $report + exit 0 +fi sh $masterdir/cron.buildd-security -- 2.39.2