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 () {
39 dak manage-build-queues -a
40 dak generate-packages-sources2 -a build-queues
41 dak generate-releases -a build-queues >/dev/null
42 ${scriptsdir}/update-buildd-archive ${base}/build-queues ${incoming}/debian-buildd
44 rm -f ${incoming}/public/*
45 dak export-suite -s "accepted" -d "$incoming/public"
48 # Process (oldstable)-proposed-updates "NEW" queue
55 dak process-policy "${queue}" | tee -a REPORT | mail -a "X-Debian: DAK" -e -s "NEW changes in ${queue}" "${to}" -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
58 dak generate-packages-sources2 -s "${queue}"
60 STAMP=${STAMP:-$(date "+%Y%m%d%H%M")}
62 local exportdir="${qdir}/tree/${STAMP}"
63 local targetdir="${qdir}/export"
64 dak export -q "${queue}" -d "${exportdir}" --all
65 ln -sfT ${exportdir} ${targetdir}
66 find "${qdir}/tree" -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
69 # These versions used in dinstall
71 if [ "${PROGRAM}" = "dinstall" ]; then
72 log "Doing automated p-u-new processing"
74 cd "${queuedir}/p-u-new"
75 punew_do "$1" "${queuedir}/p-u-new" "debian-release@lists.debian.org"
79 if [ "${PROGRAM}" = "dinstall" ]; then
80 log "Doing automated o-p-u-new processing"
82 cd "${queuedir}/o-p-u-new"
83 punew_do "$1" "${queuedir}/o-p-u-new" "debian-release@lists.debian.org"
86 function backports_policy() {
87 local queue="backports-policy"
88 local qdir="/srv/backports-master.debian.org/queue/policy"
89 local to="backports-team@debian.org"
91 if [ "${PROGRAM}" = "dinstall" ]; then
92 log "Doing automated ${queue} processing"
96 punew_do "${queue}" "${qdir}" "${to}"
99 # Do the unchecked processing, in case we have files.
100 function do_unchecked () {
103 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
104 report=$queuedir/REPORT
105 timestamp=$(date "+%Y-%m-%d %H:%M")
106 UNCHECKED_WITHOUT_LOCK=${UNCHECKED_WITHOUT_LOCK:-""}
108 echo "$timestamp": ${changes:-"Nothing to do"} >> $report
109 dak process-upload -a ${UNCHECKED_WITHOUT_LOCK} -d "$unchecked" >> $report
110 dak process-commands -d "$unchecked" >> $report
113 # process NEW policy queue
115 if [ "${PROGRAM}" = "dinstall" ]; then
116 log "Doing NEW processing"
118 (dak process-policy new; dak process-policy byhand) | mail -a "X-Debian: DAK" -e -s "NEW and BYHAND processing" ftpmaster@ftp-master.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
120 dak process-policy backports-new | mail -a "X-Debian: DAK" -e -s "NEW processing for backports-new" backports-team@debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
122 dak clean-suites -a new,backports-new
125 function sync_debbugs () {
128 timestamp=$(date "+%Y-%m-%d-%H:%M")
129 mkdir -p $queuedir/bts_version_track_archive/${timestamp}
130 rsync -aq $queuedir/bts_version_track/ $queuedir/bts_version_track_archive/${timestamp}
131 rmdir --ignore-fail-on-non-empty $queuedir/bts_version_track_archive/${timestamp} # remove if empty.
132 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
134 TSTAMP=$(stat -c %Y $lockdir/synced_bts_version)
135 DIFF=$(( NOW - TSTAMP ))
136 if [ $DIFF -ge 259200 ]; then
137 log "Kids, you tried your best and you failed miserably. The lesson is, never try. (Homer Simpson)"
141 function clean_debbugs () {
142 # Delete files older than 60 days
143 find $queuedir/bts_version_track_archive/ -mtime +60 -type f -delete
144 # Delete empty directories
145 find $queuedir/bts_version_track_archive/ -empty -type d -delete
149 # Send a report on NEW/BYHAND packages
150 log "Nagging ftpteam about NEW/BYHAND packages"
151 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
152 dak queue-report -d backports-new,backports-policy | mail -a "X-Debian: DAK" -e -s "NEW and POLICY on $(date +%D)" backports-team@debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
153 # and one on crufty packages
154 log "Sending information about crufty packages"
155 dak cruft-report -R > $webdir/cruft-report-daily.txt
156 dak cruft-report -R -s experimental >> $webdir/cruft-report-daily.txt
157 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
160 function pg_timestamp() {
161 tsname=${1:-"unknown"}
162 log "Saving postgres transaction id for ${tsname}"
163 psql -tAc 'select txid_current();' > $base/backup/txid_${tsname}_$(date +%Y.%m.%d-%H:%M:%S)
166 function get_archiveroot() {
167 local archivename="$1"
168 local query="SELECT path FROM archive WHERE name='${archivename}'"
169 local archiveroot="$(psql -tAc "${query}")"
170 if [ -z "${archiveroot}" ]; then
171 echo "get_archiveroot: couldn't get archiveroot for '${archivename}'" >&2
174 echo "${archiveroot}"