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 [$$]" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" ${MAILTO}
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 # We generate straight into the static mirror location for incoming
37 dak manage-build-queues -a
38 dak generate-packages-sources2 -a build-queues
39 dak generate-releases -a build-queues >/dev/null
41 # Stick a last modified date in the page footer
42 echo "<p>Last updated: `date -u`</p>" > ${incoming}/web/README.html
44 # Tell the mirrors that we've updated
45 chronic /usr/local/bin/static-update-component incoming.debian.org
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}" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" "${to}"
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 mkdir -p -- ${exportdir}
65 dak export -q "${queue}" -d "${exportdir}" --all
66 ln -sfT ${exportdir} ${targetdir}
67 find "${qdir}/tree" -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
70 # These versions used in dinstall
72 if [ "${PROGRAM}" = "dinstall" ]; then
73 log "Doing automated p-u-new processing"
75 cd "${queuedir}/p-u-new"
76 punew_do "$1" "${queuedir}/p-u-new" "debian-release@lists.debian.org"
80 if [ "${PROGRAM}" = "dinstall" ]; then
81 log "Doing automated o-p-u-new processing"
83 cd "${queuedir}/o-p-u-new"
84 punew_do "$1" "${queuedir}/o-p-u-new" "debian-release@lists.debian.org"
87 function backports_policy() {
88 local queue="backports-policy"
89 local qdir="/srv/backports-master.debian.org/queue/policy"
90 local to="backports-team@debian.org"
92 if [ "${PROGRAM}" = "dinstall" ]; then
93 log "Doing automated ${queue} processing"
97 punew_do "${queue}" "${qdir}" "${to}"
100 # Do the unchecked processing, in case we have files.
101 function do_unchecked () {
104 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
105 report=$queuedir/REPORT
106 timestamp=$(date "+%Y-%m-%d %H:%M")
107 UNCHECKED_WITHOUT_LOCK=${UNCHECKED_WITHOUT_LOCK:-""}
109 echo "$timestamp": ${changes:-"Nothing to do"} >> $report
110 dak process-upload -a ${UNCHECKED_WITHOUT_LOCK} -d "$unchecked" >> $report
111 dak process-commands -d "$unchecked" >> $report
114 # process NEW policy queue
116 if [ "${PROGRAM}" = "dinstall" ]; then
117 log "Doing NEW processing"
119 (dak process-policy new; dak process-policy byhand) | mail -a "X-Debian: DAK" -e -s "NEW and BYHAND processing" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" ftpmaster@ftp-master.debian.org
121 dak process-policy backports-new | mail -a "X-Debian: DAK" -e -s "NEW processing for backports-new" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" backports-team@debian.org
123 dak clean-suites -a new,backports-new
126 function sync_debbugs () {
129 timestamp=$(date "+%Y-%m-%d-%H:%M")
130 mkdir -p $queuedir/bts_version_track_archive/${timestamp}
131 rsync -aq $queuedir/bts_version_track/ $queuedir/bts_version_track_archive/${timestamp}
132 rmdir --ignore-fail-on-non-empty $queuedir/bts_version_track_archive/${timestamp} # remove if empty.
133 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
135 TSTAMP=$(stat -c %Y $lockdir/synced_bts_version)
136 DIFF=$(( NOW - TSTAMP ))
137 if [ $DIFF -ge 259200 ]; then
138 log "Kids, you tried your best and you failed miserably. The lesson is, never try. (Homer Simpson)"
142 function clean_debbugs () {
143 # Delete files older than 60 days
144 find $queuedir/bts_version_track_archive/ -mtime +60 -type f -delete
145 # Delete empty directories
146 find $queuedir/bts_version_track_archive/ -empty -type d -delete
150 # Send a report on NEW/BYHAND packages
151 log "Nagging ftpteam about NEW/BYHAND packages"
152 dak queue-report | mail -a "X-Debian: DAK" -e -s "NEW and BYHAND on $(date +%D)" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" ftpmaster@ftp-master.debian.org
153 dak queue-report -d backports-new,backports-policy | mail -a "X-Debian: DAK" -e -s "NEW and POLICY on $(date +%D)" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" backports-team@debian.org
154 # and one on crufty packages
155 log "Sending information about crufty packages"
156 dak cruft-report -R > $webdir/cruft-report-daily.txt
157 dak cruft-report -R -s experimental >> $webdir/cruft-report-daily.txt
158 cat $webdir/cruft-report-daily.txt | mail -a "X-Debian: DAK" -e -s "Debian archive cruft report for $(date +%D)" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" ftpmaster@ftp-master.debian.org
161 function pg_timestamp() {
162 tsname=${1:-"unknown"}
163 log "Saving postgres transaction id for ${tsname}"
164 psql -tAc 'select txid_current();' > $base/backup/txid_${tsname}_$(date +%Y.%m.%d-%H:%M:%S)
167 function get_archiveroot() {
168 local archivename="$1"
169 local query="SELECT path FROM archive WHERE name='${archivename}'"
170 local archiveroot="$(psql -tAc "${query}")"
171 if [ -z "${archiveroot}" ]; then
172 echo "get_archiveroot: couldn't get archiveroot for '${archivename}'" >&2
175 echo "${archiveroot}"