3 # Run daily via cron, out of dak's crontab.
8 export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
11 # common functions are "outsourced"
12 . "${configdir}/common"
14 ################################################################################
16 TMPFILE=$( mktemp -p ${TMPDIR} )
23 trap cleanup SIGHUP SIGINT SIGPIPE SIGTERM EXIT ERR
25 # log to dinstall's logfile instead of sending email
27 LOGFILE="$logdir/dinstall.log"
28 exec >> "$LOGFILE" 2>&1
30 # get the latest list of wnpp bugs and their source packages
31 wget -q -O${TMPFILE} http://qa.debian.org/data/bts/wnpp_rm
33 mv ${TMPFILE} /srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm
35 # Update wanna-build dump
36 echo "Update wanna-build database dump"
37 $base/dak/scripts/nfu/get-w-b-db
43 # Generate list of override disparities
44 dak override-disparity | gzip -9 > ${webdir}/override-disparity.gz
46 ${scriptsdir}/link_morgue.sh
48 ################################################################################