]> git.decadent.org.uk Git - dak.git/commitdiff
config-security: also refresh Release for buildd archive weekly
authorAnsgar Burchardt <ansgar@debian.org>
Sat, 3 Oct 2015 12:11:43 +0000 (14:11 +0200)
committerAnsgar Burchardt <ansgar@debian.org>
Sat, 3 Oct 2015 12:11:43 +0000 (14:11 +0200)
It looks like we actually had a week without uploads to the security
archive and the Release file expired.

config/debian-security/cron.weekly

index e46b25407479b4c53b082b935d1cea261eb7a26c..90da7d82fdb9de7abfc70cf024fe9f126603367d 100755 (executable)
@@ -26,8 +26,13 @@ if ! lockfile -r100 "$LOCKFILE"; then
 fi
 trap cleanup EXIT
 
+# Update Release for main archive
 dak generate-releases -a security >/dev/null
 
+# Update Release for buildd archive and publish it
+dak generate-releases -a build-queues >/dev/null
+${scriptsdir}/update-buildd-archive ${base}/build-queues ${incoming}/debian-security-buildd
+
 cleanup
 trap - EXIT