[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] secure show-new by unchecked.log



... to avoid parallel execution of dak

Signed-off-by: Torsten Werner <twerner@debian.org>
---
 config/debian/cron.hourly |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/config/debian/cron.hourly b/config/debian/cron.hourly
index 30e81b5..ccfbe38 100755
--- a/config/debian/cron.hourly
+++ b/config/debian/cron.hourly
@@ -12,7 +12,13 @@ dak import-users-from-passwd
 dak queue-report -n > $webdir/new.html
 dak queue-report -8 -d new,byhand,proposedupdates,oldproposedupdates
 dak show-deferred > ${webdir}/deferred.html
-dak show-new > /dev/null
+
+# do not run show-new and other stuff in parallel
+LOCKFILE="$lockdir/unchecked.lock"
+if lockfile -r16 $LOCKFILE 2> /dev/null; then
+    dak show-new > /dev/null
+    rm -f $LOCKFILE
+fi
 
 cd $webdir
 cat removals-20*.txt > removals-full.txt
-- 
1.5.6.5


Reply to: