X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=config%2Fdebian-security%2Fcron.unchecked;h=cba7c05ffcedae2270a0535629f81eff5f5708c4;hb=b702864c095c255c971eb9e74d60dfb55df64ef9;hp=eea530b445cb1c36342927bd91bf512eb5c5ff5f;hpb=57955c99aafd66ecc236f42506c94a21dbd9db15;p=dak.git diff --git a/config/debian-security/cron.unchecked b/config/debian-security/cron.unchecked index eea530b4..cba7c05f 100755 --- a/config/debian-security/cron.unchecked +++ b/config/debian-security/cron.unchecked @@ -1,6 +1,7 @@ #! /bin/bash set -e +set -o pipefail set -u export SCRIPTVARS=/srv/security-master.debian.org/dak/config/debian-security/vars @@ -17,13 +18,9 @@ doanything=false dopolicy=false LOCKFILE="$lockdir/unchecked.lock" -# So first we should go and see if any process-policy action is done -dak process-policy embargoed | mail -a "X-Debian: DAK" -e -s "Automatically accepted from embargoed" team@security.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org -dak process-policy unembargoed | mail -a "X-Debian: DAK" -e -s "Automatically accepted from unembargoed" team@security.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org - -# Now, if this really did anything, we can then sync it over. Files -# in newstage mean they are (late) accepts of security stuff, need -# to sync to ftp-master +last_changed() { + psql -qAtc "SELECT MAX(last_changed) FROM suite WHERE archive_id=(SELECT id FROM archive WHERE name='$1')" +} cleanup() { rm -f "$LOCKFILE" @@ -35,14 +32,7 @@ if ! lockfile -r8 "$LOCKFILE"; then fi trap cleanup EXIT -cd $newstage -changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs) -if [ -n "$changes" ]; then - dopolicy=true - echo "$timestamp": ${changes:-"Nothing to do in newstage"} >> $report - rsync -a -q $newstage/. /srv/queued/ftpmaster/. - dak process-upload -a -d "$newstage" >> $report -fi +old_last_changed=$(last_changed security) cd $unchecked changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs) @@ -54,34 +44,63 @@ fi cd $disembargo changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs) - if [ -n "$changes" ]; then doanything=true echo "$timestamp": ${changes:-"Nothing to do in disembargo"} >> $reportdis dak process-upload -a -d "$disembargo" >> $reportdis fi -if ! $doanything; then - echo "$timestamp": Nothing to do >> $report - exit 0 +for queue in embargoed unembargoed; do + echo "$timestamp: processing ${queue}" >> ${report} + dak process-policy ${queue} | mail -a "X-Debian: DAK" -e -s "Automatically accepted from ${queue}" -a "From: Debian FTP Masters " team@security.debian.org +done +accepted=$(find ${queuedir}/accepted -type f -name "*.changes") +if [ -n "${accepted}" ]; then + dopolicy=true +fi + +# sync accepted files to ftpmaster +cd ${base} +find ${queuedir}/accepted -type f -exec mv -t /srv/queued/ftpmaster '{}' + + +# export policy queues +for queue in embargoed; do + cd ${queuedir}/${queue} + rm -rf export.new + mkdir export.new + dak export -q ${queue} -d export.new --all + rsync -a --delete export.new/. export/. + rm -rf export.new + cd ${base} +done + +if [ "${doanything}" = "false" ] && [ "${dopolicy}" = "false" ]; then + echo "$timestamp": Nothing to do >> $report + exit 0 fi +# Update stable-kfreebsd +dak update-suite stable stable-kfreebsd + +# manage build queues dak manage-build-queues -a +dak generate-packages-sources2 -a build-queues +dak generate-releases -a build-queues >/dev/null +${scriptsdir}/update-buildd-archive ${base}/build-queues ${incoming}/debian-security-buildd +$configdir/cron.buildd + +new_last_changed=$(last_changed security) -if [ "x${dopolicy}x" = "xtruex" ]; then +if [[ "${old_last_changed}" != "${new_last_changed}" ]]; then # We had something approved from a policy queue, push out new archive dak dominate - #dak generate-filelist cd $configdir $configdir/map.sh - #apt-ftparchive generate apt.conf - dak generate-packages-sources2 - dak generate-releases - /srv/security-master.debian.org/dak/config/debian-security/make-mirror.sh + dak generate-packages-sources2 -a security + dak generate-releases -a security >/dev/null + /srv/security-master.debian.org/dak/config/debian-security/make-mirror.sh >/dev/null sudo -u archvsync -H /home/archvsync/signal_security fi cleanup trap - EXIT - -$configdir/cron.buildd