X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=config%2Fdebian%2Fcommon;h=e29106d300e3480e880b06649f53f85163e24f7c;hb=d11d0610cc3a8e8cfc4d987d8e5d6901195f5f4e;hp=a18433dac49da93f113072ac84bfb426e8a18eed;hpb=706ac754e2ae774a8a4b39f2656b97eadbf523d2;p=dak.git diff --git a/config/debian/common b/config/debian/common index a18433da..e29106d3 100644 --- a/config/debian/common +++ b/config/debian/common @@ -89,3 +89,14 @@ function sync_debbugs () { log "Kids, you tried your best and you failed miserably. The lesson is, never try. (Homer Simpson)" fi } + +function reports() { + # Send a report on NEW/BYHAND packages + log "Nagging ftpteam about NEW/BYHAND packages" + dak queue-report | mail -e -s "NEW and BYHAND on $(date +%D)" ftpmaster@ftp-master.debian.org + # and one on crufty packages + log "Sending information about crufty packages" + dak cruft-report > $webdir/cruft-report-daily.txt + dak cruft-report -s experimental >> $webdir/cruft-report-daily.txt + cat $webdir/cruft-report-daily.txt | mail -e -s "Debian archive cruft report for $(date +%D)" ftpmaster@ftp-master.debian.org +}