]> git.donarmstrong.com Git - dak.git/commitdiff
unchecked
authorJoerg Jaspert <joerg@debian.org>
Sun, 15 Nov 2009 22:50:18 +0000 (23:50 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sun, 15 Nov 2009 22:50:18 +0000 (23:50 +0100)
additionally run over newstage/

Signed-off-by: Joerg Jaspert <joerg@debian.org>
config/debian/common
config/debian/cron.unchecked

index 70f92fdd52464718331cc8adceef09fba6ff1538..8aa05a48a0e6a1097ac853244c30ce3d231cbf49 100644 (file)
@@ -64,6 +64,19 @@ function do_unchecked () {
     dak process-upload -a ${UNCHECKED_WITHOUT_LOCK} -d "$unchecked" >> $report
 }
 
+# Do the newstage processing, in case we have files.
+function do_newstage () {
+    cd $newstage
+
+    changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
+    report=$queuedir/REPORT
+    timestamp=$(date "+%Y-%m-%d %H:%M")
+    UNCHECKED_WITHOUT_LOCK=${UNCHECKED_WITHOUT_LOCK:-""}
+
+    echo "$timestamp": ${changes:-"Nothing to do in newstage"}  >> $report
+    dak process-upload -a ${UNCHECKED_WITHOUT_LOCK} -d "$newstage" >> $report
+}
+
 function sync_debbugs () {
     # sync with debbugs
     echo "--" >> $report
index 008b8243abec079291bb62692cd70d5ad2f56280..a9e59f2f373a7b7c006d08f49c17c011b1f55c40 100755 (executable)
@@ -90,6 +90,7 @@ export LC_ALL=C
 lockfile -r3 $LOCKFILE || exit 0
 trap cleanup 0
 
+do_newstage
 do_unchecked
 
 if [ ! -z "$changes" ]; then