X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=config%2Fdebian-security%2Fcron.unchecked;h=15e96c739388e8e85acfc94b0cee8cd21e7d0c13;hb=021da2f4962d13dc215e15ccf42b0cf892603a29;hp=f55315c5028de92ce927db75ed48e1afcba9b4cb;hpb=263a24807c967cc2c8996679e9593dbc46abe937;p=dak.git diff --git a/config/debian-security/cron.unchecked b/config/debian-security/cron.unchecked index f55315c5..15e96c73 100755 --- a/config/debian-security/cron.unchecked +++ b/config/debian-security/cron.unchecked @@ -18,14 +18,6 @@ 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 - cleanup() { rm -f "$LOCKFILE" } @@ -36,15 +28,6 @@ if ! lockfile -r8 "$LOCKFILE"; then fi trap cleanup EXIT -for queue in embargoed; do - echo "$timestamp: processing ${queue}" >> ${report} - dak process-policy ${queue} >> ${report} - accepted=$(find ${queuedir}/accepted -type f -name "*.changes") - if [ -n "${accepted}" ]; then - dopolicy=true - fi -done - cd $unchecked changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs) if [ -n "$changes" ]; then @@ -55,38 +38,53 @@ 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}" = "false" ] && [ "${dopolicy}" = "false" ]; 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}" team@security.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.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 - pushd ${queuedir}/${queue} + 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 - popd + cd ${base} done +if [ "${doanything}" = "false" ] && [ "${dopolicy}" = "false" ]; then + echo "$timestamp": Nothing to do >> $report + exit 0 +fi + # 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 # export build queues in old format # XXX: This should be removed later. for suite in stable testing; do overridecodename=$(dak admin suite show ${suite} | awk '$1 == "OverrideCodename:" { print $2 }') rm -rf ${incoming}/${suite}.new + mkdir ${incoming}/${suite}.new dak export-suite -s buildd-${suite} -d ${incoming}/${suite}.new cd ${incoming}/${suite}.new @@ -113,7 +111,6 @@ done if [ "x${dopolicy}x" = "xtruex" ]; then # We had something approved from a policy queue, push out new archive - find /srv/security-master.debian.org/queue/accepted -type f -exec mv -t /srv/queued/ftpmaster '{}' + dak dominate #dak generate-filelist cd $configdir