2 # log something (basically echo it together with a timestamp)
4 # Set $PROGRAM to a string to have it added to the output.
6 local prefix=${PROGRAM:-}
7 echo "$(date +"%b %d %H:%M:%S") $(hostname -s) ${prefix}[$$]: $@"
10 # log the message using log() but then also send a mail
11 # to the address configured in MAILTO (if non-empty)
12 function log_error () {
14 if [ -z "${MAILTO}" ]; then
15 echo "$@" | mail -a "X-Debian: DAK" -e -s "[$PROGRAM@$(hostname -s)] ERROR [$$]" ${MAILTO} -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
19 # debug log, only output when DEBUG=1
21 if [ $DEBUG -eq 1 ]; then
26 function wbtrigger() {
27 SSHOPT="-o BatchMode=yes -o ConnectTimeout=30 -o SetupTimeout=240"
28 if lockfile -r 3 -l 3600 "${LOCK_BUILDD}"; then
29 ssh -q -q ${SSHOPT} wbadm@buildd /org/wanna-build/trigger.often
31 rm -f "${LOCK_BUILDD}"
34 # used by cron.dinstall *and* cron.unchecked.
35 function make_buildd_dir () {
36 dak manage-build-queues -a
38 for dist in $(ls -1 ${incoming}/dists/); do
39 cd ${incoming}/dists/${dist}
40 mkdir -p tree/${STAMP}
41 cp -al ${incoming}/dists/${dist}/buildd/. tree/${STAMP}/
42 ln -sfT tree/${STAMP} ${incoming}/dists/${dist}/current
43 find ./tree -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
48 # Do the unchecked processing, in case we have files.
49 function do_unchecked () {
52 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
53 report=$queuedir/REPORT
54 timestamp=$(date "+%Y-%m-%d %H:%M")
55 UNCHECKED_WITHOUT_LOCK=${UNCHECKED_WITHOUT_LOCK:-""}
57 echo "$timestamp": ${changes:-"Nothing to do"} >> $report
58 dak process-upload -a ${UNCHECKED_WITHOUT_LOCK} -d "$unchecked" >> $report
61 # Do the newstage processing, in case we have files.
62 function do_newstage () {
65 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
66 report=$queuedir/REPORT
67 timestamp=$(date "+%Y-%m-%d %H:%M")
68 UNCHECKED_WITHOUT_LOCK=${UNCHECKED_WITHOUT_LOCK:-""}
70 echo "$timestamp": ${changes:-"Nothing to do in newstage"} >> $report
71 dak process-upload -a ${UNCHECKED_WITHOUT_LOCK} -d "$newstage" >> $report
74 function sync_debbugs () {
77 timestamp=$(date "+%Y-%m-%d-%H:%M")
78 mkdir -p $queuedir/bts_version_track_archive/${timestamp}
79 rsync -aq $queuedir/bts_version_track/ $queuedir/bts_version_track_archive/${timestamp}
80 rmdir --ignore-fail-on-non-empty $queuedir/bts_version_track_archive/${timestamp} # remove if empty.
81 rsync -aq -e "ssh -o Batchmode=yes -o ConnectTimeout=30 -o SetupTimeout=30" --remove-source-files $queuedir/bts_version_track/ bugs-sync:/org/bugs.debian.org/versions/queue/ftp-master/ 2>/dev/null && touch $lockdir/synced_bts_version || true
83 TSTAMP=$(stat -c %Y $lockdir/synced_bts_version)
84 DIFF=$(( NOW - TSTAMP ))
85 if [ $DIFF -ge 259200 ]; then
86 log "Kids, you tried your best and you failed miserably. The lesson is, never try. (Homer Simpson)"
90 function clean_debbugs () {
91 # Delete files older than 60 days
92 find $queuedir/bts_version_track_archive/ -mtime +60 -type f -delete
93 # Delete empty directories
94 find $queuedir/bts_version_track_archive/ -empty -type d -delete
98 # Send a report on NEW/BYHAND packages
99 log "Nagging ftpteam about NEW/BYHAND packages"
100 dak queue-report | mail -a "X-Debian: DAK" -e -s "NEW and BYHAND on $(date +%D)" ftpmaster@ftp-master.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
101 # and one on crufty packages
102 log "Sending information about crufty packages"
103 dak cruft-report > $webdir/cruft-report-daily.txt
104 dak cruft-report -s experimental >> $webdir/cruft-report-daily.txt
105 cat $webdir/cruft-report-daily.txt | mail -a "X-Debian: DAK" -e -s "Debian archive cruft report for $(date +%D)" ftpmaster@ftp-master.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org