]> git.decadent.org.uk Git - dak.git/blob - config/debian/common
Restore the correct From address by adding additional headers.
[dak.git] / config / debian / common
1 # -*- mode:sh -*-
2 # log something (basically echo it together with a timestamp)
3 #
4 # Set $PROGRAM to a string to have it added to the output.
5 function log () {
6         local prefix=${PROGRAM:-}
7         echo "$(date +"%b %d %H:%M:%S") $(hostname -s) ${prefix}[$$]: $@"
8 }
9
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 () {
13         log "$@"
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}
16         fi
17 }
18
19 # debug log, only output when DEBUG=1
20 function debug () {
21     if [ $DEBUG -eq 1 ]; then
22         log "$*"
23     fi
24 }
25
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
30     fi
31     rm -f "${LOCK_BUILDD}"
32 }
33
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
40
41     # Stick a last modified date in the page footer
42     echo "<p>Last updated: `date -u`</p>" > ${incoming}/web/README.html
43
44     # Tell the mirrors that we've updated
45     chronic /usr/local/bin/static-update-component incoming.debian.org
46 }
47
48 # Process (oldstable)-proposed-updates "NEW" queue
49 function punew_do() {
50     local queue="$1"
51     local qdir="$2"
52     local to="${3}"
53
54     date -u -R >> REPORT
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}"
56     echo >> REPORT
57
58     dak generate-packages-sources2 -s "${queue}"
59
60     STAMP=${STAMP:-$(date "+%Y%m%d%H%M")}
61
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
67 }
68
69 # These versions used in dinstall
70 function punew() {
71     if [ "${PROGRAM}" = "dinstall" ]; then
72         log "Doing automated p-u-new processing"
73     fi
74     cd "${queuedir}/p-u-new"
75     punew_do "$1" "${queuedir}/p-u-new" "debian-release@lists.debian.org"
76 }
77
78 function opunew() {
79     if [ "${PROGRAM}" = "dinstall" ]; then
80         log "Doing automated o-p-u-new processing"
81     fi
82     cd "${queuedir}/o-p-u-new"
83     punew_do "$1" "${queuedir}/o-p-u-new" "debian-release@lists.debian.org"
84 }
85
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"
90
91     if [ "${PROGRAM}" = "dinstall" ]; then
92         log "Doing automated ${queue} processing"
93     fi
94
95     cd "${qdir}"
96     punew_do "${queue}" "${qdir}" "${to}"
97 }
98
99 # Do the unchecked processing, in case we have files.
100 function do_unchecked () {
101     cd $unchecked
102
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:-""}
107
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
111 }
112
113 # process NEW policy queue
114 function do_new () {
115     if [ "${PROGRAM}" = "dinstall" ]; then
116         log "Doing NEW processing"
117     fi
118     (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
119
120     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
121
122     dak clean-suites -a new,backports-new
123 }
124
125 function sync_debbugs () {
126     # sync with debbugs
127     echo "--" >> $report
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
133     NOW=$(date +%s)
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)"
138     fi
139 }
140
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
146 }
147
148 function reports() {
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)" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" 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)" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" backports-team@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)" -a "From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>" ftpmaster@ftp-master.debian.org
158 }
159
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)
164 }
165
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
172         return 1
173     fi
174     echo "${archiveroot}"
175 }