]> git.decadent.org.uk Git - dak.git/blob - config/debian/common
Disable old buildd queues.
[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 [$$]" ${MAILTO}  -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
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     local overridesuite
37     local suite
38
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
43
44     for suite in unstable experimental squeeze-backports; do
45         rm -rf "$incoming/dists/$suite/buildd"
46         mkdir -p "$incoming/dists/$suite/buildd"
47         dak export-suite -s "buildd-$suite" -d "$incoming/dists/$suite/buildd"
48     done
49     rm -f ${incoming}/public/*
50     dak export-suite -s "accepted" -d "$incoming/public"
51 }
52
53 # Process (oldstable)-proposed-updates "NEW" queue
54 function punew_do() {
55     local queue="$1"
56     local qdir="$2"
57     local to="${3}"
58
59     date -u -R >> REPORT
60     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
61     echo >> REPORT
62
63     dak generate-packages-sources2 -s "${queue}"
64
65     STAMP=${STAMP:-$(date "+%Y%m%d%H%M")}
66
67     local exportdir="${qdir}/tree/${STAMP}"
68     local targetdir="${qdir}/export"
69     dak export -q "${queue}" -d "${exportdir}" --all
70     ln -sfT ${exportdir} ${targetdir}
71     find "${qdir}/tree" -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
72 }
73
74 # These versions used in dinstall
75 function punew() {
76     if [ "${PROGRAM}" = "dinstall" ]; then
77         log "Doing automated p-u-new processing"
78     fi
79     cd "${queuedir}/p-u-new"
80     punew_do "$1" "${queuedir}/p-u-new" "debian-release@lists.debian.org"
81 }
82
83 function opunew() {
84     if [ "${PROGRAM}" = "dinstall" ]; then
85         log "Doing automated o-p-u-new processing"
86     fi
87     cd "${queuedir}/o-p-u-new"
88     punew_do "$1" "${queuedir}/o-p-u-new" "debian-release@lists.debian.org"
89 }
90
91 function backports_policy() {
92     local queue="backports-policy"
93     local qdir="/srv/backports-master.debian.org/queue/policy"
94     local to="backports-team@debian.org"
95
96     if [ "${PROGRAM}" = "dinstall" ]; then
97         log "Doing automated ${queue} processing"
98     fi
99
100     cd "${qdir}"
101     punew_do "${queue}" "${qdir}" "${to}"
102 }
103
104 # Do the unchecked processing, in case we have files.
105 function do_unchecked () {
106     cd $unchecked
107
108     changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
109     report=$queuedir/REPORT
110     timestamp=$(date "+%Y-%m-%d %H:%M")
111     UNCHECKED_WITHOUT_LOCK=${UNCHECKED_WITHOUT_LOCK:-""}
112
113     echo "$timestamp": ${changes:-"Nothing to do"}  >> $report
114     dak process-upload -a ${UNCHECKED_WITHOUT_LOCK} -d "$unchecked" >> $report
115     dak process-commands -d "$unchecked" >> $report
116 }
117
118 # process NEW policy queue
119 function do_new () {
120     if [ "${PROGRAM}" = "dinstall" ]; then
121         log "Doing NEW processing"
122     fi
123     (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
124
125     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
126
127     dak clean-suites -a new,backports-new
128 }
129
130 function sync_debbugs () {
131     # sync with debbugs
132     echo "--" >> $report
133     timestamp=$(date "+%Y-%m-%d-%H:%M")
134     mkdir -p $queuedir/bts_version_track_archive/${timestamp}
135     rsync -aq $queuedir/bts_version_track/ $queuedir/bts_version_track_archive/${timestamp}
136     rmdir --ignore-fail-on-non-empty $queuedir/bts_version_track_archive/${timestamp} # remove if empty.
137     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
138     NOW=$(date +%s)
139     TSTAMP=$(stat -c %Y $lockdir/synced_bts_version)
140     DIFF=$(( NOW - TSTAMP ))
141     if [ $DIFF -ge 259200 ]; then
142         log "Kids, you tried your best and you failed miserably. The lesson is, never try. (Homer Simpson)"
143     fi
144 }
145
146 function clean_debbugs () {
147     # Delete files older than 60 days
148     find $queuedir/bts_version_track_archive/ -mtime +60 -type f -delete
149     # Delete empty directories
150     find $queuedir/bts_version_track_archive/ -empty -type d -delete
151 }
152
153 function reports() {
154     # Send a report on NEW/BYHAND packages
155     log "Nagging ftpteam about NEW/BYHAND packages"
156     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
157     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
158     # and one on crufty packages
159     log "Sending information about crufty packages"
160     dak cruft-report -R > $webdir/cruft-report-daily.txt
161     dak cruft-report -R -s experimental >> $webdir/cruft-report-daily.txt
162     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
163 }
164
165 function pg_timestamp() {
166     tsname=${1:-"unknown"}
167     log "Saving postgres transaction id for ${tsname}"
168     psql -tAc 'select txid_current();' > $base/backup/txid_${tsname}_$(date +%Y.%m.%d-%H:%M:%S)
169 }
170
171 function get_archiveroot() {
172     local archivename="$1"
173     local query="SELECT path FROM archive WHERE name='${archivename}'"
174     local archiveroot="$(psql -tAc "${query}")"
175     if [ -z "${archiveroot}" ]; then
176         echo "get_archiveroot: couldn't get archiveroot for '${archivename}'" >&2
177         return 1
178     fi
179     echo "${archiveroot}"
180 }