3 # Run daily via cron, out of dak's crontab.
7 export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
10 # common functions are "outsourced"
11 . "${configdir}/common"
13 ################################################################################
15 TMPFILE=$( mktemp -p ${TMPDIR} )
22 trap cleanup SIGHUP SIGINT SIGPIPE SIGTERM EXIT ERR
24 # log to dinstall's logfile instead of sending email
26 LOGFILE="$logdir/dinstall.log"
27 exec >> "$LOGFILE" 2>&1
29 # get the latest list of wnpp bugs and their source packages
30 wget -q -O${TMPFILE} http://qa.debian.org/data/bts/wnpp_rm
32 mv ${TMPFILE} /srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm
34 # Update wanna-build dump
35 echo "Update wanna-build database dump"
36 $base/dak/scripts/nfu/get-w-b-db
42 # Generate list of override disparities
43 dak override-disparity | gzip -9 > ${webdir}/override-disparity.gz
45 ################################################################################