X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=config%2Fdebian%2Fdaily.functions;h=e6d6f2fb9da1cc3abed67ded9cfc62b3287c07aa;hb=3da41a34b4439cc643cad154a9a42abe795d0380;hp=e2b4b07a0087442f490ba2f1df0dba9dabbccf48;hpb=9639afdb34ea7c5fdaf62e05a78ca0aab288f6de;p=dak.git diff --git a/config/debian/daily.functions b/config/debian/daily.functions index e2b4b07a..e6d6f2fb 100644 --- a/config/debian/daily.functions +++ b/config/debian/daily.functions @@ -2,15 +2,16 @@ # get the latest list of wnpp bugs and their source packages function wnppbugs() { - TMPFILE=$( mktemp -p ${TMPDIR} ) - TMPFILES="${TMPFILES} ${TMPFILE}" - wget -q -O${TMPFILE} --ca-directory=/etc/ssl/ca-debian https://qa.debian.org/data/bts/wnpp_rm - chmod go+r ${TMPFILE} - mv ${TMPFILE} /srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm + log "Fetching latest list of wnpp bugs" + TMPLIST=$( gettempfile ) + wget -q -O${TMPLIST} --ca-directory=/etc/ssl/ca-debian https://qa.debian.org/data/bts/wnpp_rm + chmod go+r ${TMPLIST} + mv ${TMPLIST} ${scriptdir}/masterfiles/wnpp_rm } # Push files over to security function pushfilesdb() { + log "Pushing files table to security" # The key over there should have the following set for the ssh key: # command="/usr/bin/xzcat | /usr/bin/psql -1 -c 'DELETE FROM external_files; COPY external_files (id, filename, size, md5sum, last_used, sha1sum, sha256sum, created, modified) FROM STDIN' obscurity" psql -c 'COPY files (id, filename, size, md5sum, last_used, sha1sum, sha256sum, created, modified) TO STDOUT' projectb | \ @@ -22,38 +23,38 @@ function pushfilesdb() { # Update wanna-build dump function wbdump() { log "Update wanna-build database dump" - $base/dak/scripts/nfu/get-w-b-db + ${masterdir}/scripts/nfu/get-w-b-db } + # Generate list of override disparities function overridedisp() { + log "Generating list of override disparities" dak override-disparity | gzip -9 > ${webdir}/override-disparity.gz } # Generate stats about the new queue function newstats() { + log "Generating stats about the new queue" dak stats new ${webdir}/NEW-stats.yaml 2> /dev/null } # Generate the contributor data function contributor() { log "Submitting data to contributors" - TMPCNTB=$( mktemp -p ${TMPDIR} ) - TMPFILES="${TMPFILES} ${TMPCNTB}" + TMPCNTB=$( gettempfile ) REQUESTS_CA_BUNDLE=/etc/ssl/ca-debian/ca-certificates.crt dc-tool --mine="${configdir}/contributor.source" --auth-token @"${base}/s3kr1t/contributor.auth" --source ftp.debian.org --json > ${TMPCNTB} # Post with curl as a workaround for #801506 # See https://wiki.debian.org/ServicesSSL#curl dir=/etc/ssl/ca-debian - test -d $dir && capath="--capath $dir" - curl -s $capath https://contributors.debian.org/contributors/post \ + test -d ${dir} && capath="--capath ${dir}" + curl -s ${capath} https://contributors.debian.org/contributors/post \ -F source=ftp.debian.org \ -F auth_token="$(cat ${base}/s3kr1t/contributor.auth)" \ -F data=@${TMPCNTB} > ${TMPCNTB}.result + log "Results:" cat ${TMPCNTB}.result + log "----" rm -f ${TMPCNTB}.result } - -function linkmorgue() { - ${scriptsdir}/link_morgue.sh -}