]> git.decadent.org.uk Git - dak.git/blob - config/debian/common
9accda153f2b15ba7a35ebf311dae2d82bf67eb6
[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     dak manage-build-queues -a
37     dak generate-packages-sources2 -a build-queues
38     dak generate-releases -a build-queues >/dev/null
39
40     for suite in unstable experimental; do
41         rm -rf "$incoming/dists/$suite/buildd"
42         dak export-suite -s "buildd-$suite" -d "$incoming/dists/$suite/buildd"
43     done
44     rm -f ${incoming}/public/*
45     dak export-suite -s "accepted" -d "$incoming/public"
46
47     # export to old build queue directories
48     # XXX: Remove once the buildds use the version generated above.
49     for suite in $(ls -1 $incoming/dists/); do
50         # Skip project trace directory
51         if [ "${suite}x" = "projectx" ]; then continue; fi
52         cd ${incoming}/dists/${suite}/buildd
53
54         apt-ftparchive packages . $overridedir/override.sid.all3 >Packages
55         gzip -9c --rsyncable <Packages >Packages.gz
56         apt-ftparchive sources . $overridedir/override.sid.all3 >Sources
57         gzip -9c --rsyncable <Sources >Sources.gz
58
59         rm -f buildd/Release
60         cd ..
61         apt-ftparchive -qq -o APT::FTPArchive::Release::Origin="Debian" -o APT::FTPArchive::Release::Label="Debian" -o APT::FTPArchive::Release::Description="buildd $suite incoming" -o APT::FTPArchive::Release::Architectures="$archs" release buildd >Release
62         if [ "$suite" = "experimental" ]; then
63             echo "NotAutomatic: yes" >>Release
64         fi
65
66         gpg --secret-keyring /srv/ftp-master.debian.org/s3kr1t/dot-gnupg/secring.gpg --keyring /srv/ftp-master.debian.org/s3kr1t/dot-gnupg/pubring.gpg --no-options --batch --no-tty --armour --default-key 473041FA --detach-sign -o Release.gpg Release
67
68         mv Release Release.gpg buildd/
69     done
70
71     STAMP=${STAMP:-$(date "+%Y%m%d%H%M")}
72
73     for dist in $(ls -1 ${incoming}/dists/); do
74         # Skip project trace directory
75         if [ "${dist}x" = "projectx" ]; then continue; fi
76         cd ${incoming}/dists/${dist}
77         mkdir -p tree/${STAMP}
78         cp -al ${incoming}/dists/${dist}/buildd/. tree/${STAMP}/
79         ln -sfT tree/${STAMP} ${incoming}/dists/${dist}/current
80         find ./tree -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
81     done
82 }
83
84 # Process (oldstable)-proposed-updates "NEW" queue
85 function punew_do() {
86     local queue="$1"
87     local qdir="$2"
88     date -u -R >> REPORT
89     dak process-policy "${queue}" | tee -a REPORT | mail -a "X-Debian: DAK" -e -s "NEW changes in ${queue}" debian-release@lists.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
90     echo >> REPORT
91
92     dak generate-packages-sources2 -s "${queue}"
93
94     STAMP=${STAMP:-$(date "+%Y%m%d%H%M")}
95
96     local exportdir="${queuedir}${qdir}/tree/${STAMP}"
97     local targetdir="${queuedir}${qdir}/export"
98     dak export -q "${queue}" -d "${exportdir}" --all
99     ln -sfT ${exportdir} ${targetdir}
100     find ${queuedir}${qdir}/tree -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
101 }
102
103 # These versions used in dinstall
104 function punew() {
105     if [ "${PROGRAM}" = "dinstall" ]; then
106         log "Doing automated p-u-new processing"
107     fi
108     cd "${queuedir}/p-u-new"
109     punew_do "$1" "p-u-new"
110 }
111
112 function opunew() {
113     if [ "${PROGRAM}" = "dinstall" ]; then
114         log "Doing automated o-p-u-new processing"
115     fi
116     cd "${queuedir}/o-p-u-new"
117     punew_do "$1" "o-p-u-new"
118 }
119
120 # Do the unchecked processing, in case we have files.
121 function do_unchecked () {
122     cd $unchecked
123
124     changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
125     report=$queuedir/REPORT
126     timestamp=$(date "+%Y-%m-%d %H:%M")
127     UNCHECKED_WITHOUT_LOCK=${UNCHECKED_WITHOUT_LOCK:-""}
128
129     echo "$timestamp": ${changes:-"Nothing to do"}  >> $report
130     dak process-upload -a ${UNCHECKED_WITHOUT_LOCK} -d "$unchecked" >> $report
131     dak process-commands -d "$unchecked" >> $report
132 }
133
134 # process NEW policy queue
135 function do_new () {
136     if [ "${PROGRAM}" = "dinstall" ]; then
137         log "Doing NEW processing"
138     fi
139     (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
140     dak clean-suites -a new
141 }
142
143 function sync_debbugs () {
144     # sync with debbugs
145     echo "--" >> $report
146     timestamp=$(date "+%Y-%m-%d-%H:%M")
147     mkdir -p $queuedir/bts_version_track_archive/${timestamp}
148     rsync -aq $queuedir/bts_version_track/ $queuedir/bts_version_track_archive/${timestamp}
149     rmdir --ignore-fail-on-non-empty $queuedir/bts_version_track_archive/${timestamp} # remove if empty.
150     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
151     NOW=$(date +%s)
152     TSTAMP=$(stat -c %Y $lockdir/synced_bts_version)
153     DIFF=$(( NOW - TSTAMP ))
154     if [ $DIFF -ge 259200 ]; then
155         log "Kids, you tried your best and you failed miserably. The lesson is, never try. (Homer Simpson)"
156     fi
157 }
158
159 function clean_debbugs () {
160     # Delete files older than 60 days
161     find $queuedir/bts_version_track_archive/ -mtime +60 -type f -delete
162     # Delete empty directories
163     find $queuedir/bts_version_track_archive/ -empty -type d -delete
164 }
165
166 function reports() {
167     # Send a report on NEW/BYHAND packages
168     log "Nagging ftpteam about NEW/BYHAND packages"
169     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
170     # and one on crufty packages
171     log "Sending information about crufty packages"
172     dak cruft-report -R > $webdir/cruft-report-daily.txt
173     dak cruft-report -R -s experimental >> $webdir/cruft-report-daily.txt
174     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
175 }
176
177 function pg_timestamp() {
178     tsname=${1:-"unknown"}
179     log "Saving postgres transaction id for ${tsname}"
180     psql -tAc 'select txid_current();' > $base/backup/txid_${tsname}_$(date +%Y.%m.%d-%H:%M:%S)
181 }