3 # Executed daily via cron, out of dak's crontab.
6 export SCRIPTVARS=/srv/ftp.debian.org/dak/config/debian/vars
9 ################################################################################
12 NOW=`date "+%Y.%m.%d-%H:%M:%S"`
13 LOGFILE="$logdir/dinstall_${NOW}.log"
14 exec > "$LOGFILE" 2>&1
18 echo Archive maintenance timestamp $TS: $(date +%H:%M:%S)
21 echo Archive maintenance started at $(date +%H:%M:%S)
24 NOTICE="$ftpdir/Archive_Maintenance_In_Progress"
25 LOCKCU="$lockdir/daily.lock"
26 LOCKAC="$lockdir/unchecked.lock"
27 BRITNEYLOCK="$lockdir/britney.lock"
33 if [ "$lockac" -eq "1" ]; then
38 lockfile -l 3600 $LOCKCU
41 # This file is simply used to indicate to britney whether or not
42 # the Packages file updates completed sucessfully. It's not a lock
43 # from our point of view
48 Packages are currently being installed and indices rebuilt.
49 Maintenance is automatic, starting at 07:52 and 19:52 UTC, and
50 ending about an hour later. This file is then removed.
52 You should not mirror the archive during this period.
55 # Push merkels qa user, so the qa pages can show "dinstall is running" information
56 echo "Telling merkels QA user that we start dinstall"
57 ssh -2 -i ~dak/.ssh/push_merkel_qa -o BatchMode=yes -o SetupTimeOut=90 -o ConnectTimeout=90 qa@merkel.debian.org sleep 1 || true
60 ################################################################################
62 echo "Creating pre-daily-cron-job backup of projectb database..."
63 pg_dump projectb > $base/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
65 ################################################################################
68 echo "Updating Bugs docu, Mirror list and mailing-lists.txt"
70 $scriptsdir/update-bugdoctxt
71 $scriptsdir/update-mirrorlists
72 $scriptsdir/update-mailingliststxt
73 $scriptsdir/update-pseudopackages.sh
75 ################################################################################
78 echo "Doing automated p-u-new processing"
81 dak process-new -a -C COMMENTS >> REPORT || true
85 echo "Doing automated o-p-u-new processing"
86 cd $queuedir/o-p-u-new
88 dak process-new -a -C COMMENTS >> REPORT || true
91 ################################################################################
95 echo "Synchronizing i18n package descriptions"
96 # First sync their newest data
97 cd ${scriptdir}/i18nsync
98 rsync -aq --delete --delete-after ddtp-sync:/does/not/matter . || true
100 # Now check if we still know about the packages for which they created the files
101 # is the timestamp signed by us?
102 if $(gpgv --keyring /srv/ftp.debian.org/s3kr1t/dot-gnupg/pubring.gpg timestamp.gpg timestamp); then
103 # now read it. As its signed by us we are sure the content is what we expect, no need
104 # to do more here. And we only test -d a directory on it anyway.
105 TSTAMP=$(cat timestamp)
106 # do we have the dir still?
107 if [ -d ${scriptdir}/i18n/${TSTAMP} ]; then
109 if ${scriptsdir}/ddtp-i18n-check.sh . ${scriptdir}/i18n/${TSTAMP}; then
110 # Yay, worked, lets copy around
111 for dir in lenny sid; do
112 if [ -d dists/${dir}/ ]; then
113 cd dists/${dir}/main/i18n
114 rsync -aq --delete --delete-after . ${ftpdir}/dists/${dir}/main/i18n/.
116 cd ${scriptdir}/i18nsync
119 echo "ARRRR, bad guys, wrong files, ARRR"
120 echo "Arf, Arf, Arf, bad guys, wrong files, arf, arf, arf" | mail debian-l10n-devel@lists.alioth.debian.org
123 echo "ARRRR, missing the timestamp ${TSTAMP} directory, not updating i18n, ARRR"
124 echo "Arf, Arf, Arf, missing the timestamp ${TSTAMP} directory, not updating i18n, arf, arf, arf" | mail debian-l10n-devel@lists.alioth.debian.org
127 echo "ARRRRRRR, could not verify our timestamp signature, ARRR. Don't mess with our files, i18n guys, ARRRRR."
128 echo "Arf, Arf, Arf, could not verify our timestamp signature, arf. Don't mess with our files, i18n guys, arf, arf, arf" | mail debian-l10n-devel@lists.alioth.debian.org
131 ################################################################################
136 echo "Processing queue/accepted"
139 dak process-accepted -pa *.changes | tee REPORT | \
140 mail -s "Install for $(date +%D)" ftpmaster@ftp-master.debian.org
141 chgrp debadmin REPORT
145 echo "Checking for cruft in overrides"
150 echo "Fixing symlinks in $ftpdir"
151 symlinks -d -r $ftpdir
155 echo "Generating suite file lists for apt-ftparchive"
156 dak make-suite-file-list
160 echo "Updating fingerprints"
161 # Update fingerprints
162 dak import-keyring -L /srv/keyring.debian.org/keyrings/debian-keyring.gpg || true
166 # Generate override files
167 echo "Writing overrides into text files"
174 rm -f override.sid.all3
175 for i in main contrib non-free main.debian-installer; do cat override.sid.$i >> override.sid.all3; done
179 # Generate Packages and Sources files
180 echo "Generating Packages and Sources files"
182 apt-ftparchive generate apt.conf
186 # Generate *.diff/ incremental updates
187 echo "Generating pdiff files"
188 dak generate-index-diffs
192 # Generate Release files
193 echo "Generating Release files"
194 dak generate-releases
198 # Clean out old packages
199 echo "Cleanup old packages/files"
205 # Needs to be rebuilt, as files have moved. Due to unaccepts, we need to
206 # update this before wanna-build is updated.
207 echo "Regenerating wanna-build/buildd information"
208 psql projectb -A -t -q -c "SELECT filename FROM queue_build WHERE suite = 5 AND queue = 0 AND in_queue = true AND filename ~ 'd(sc|eb)$'" > $dbdir/dists/unstable_accepted.list
209 symlinks -d /srv/incoming.debian.org/buildd > /dev/null
210 apt-ftparchive generate apt.conf.buildd
214 echo "Running various scripts from $scriptsdir"
224 # (Re)generate the hardlinked mirror directory for "public" buildd / mirror access
225 echo "Regenerating mirror/ hardlink fun"
227 rsync -aH --link-dest ${ftpdir} --delete --delete-after --ignore-errors ${ftpdir}/. .
232 echo "Trigger daily wanna-build run"
233 ssh -o BatchMode=yes -o SetupTimeOut=90 -o ConnectTimeout=90 buildd@buildd /org/wanna-build/trigger.daily || echo "W-B trigger.daily failed" | mail -s "W-B Daily trigger failed" ftpmaster@ftp-master.debian.org
237 echo Archive maintenance finished at $(date +%H:%M:%S)
239 ################################################################################
241 echo "Creating post-daily-cron-job backup of projectb database..."
242 POSTDUMP=$base/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
243 pg_dump projectb > $POSTDUMP
244 (cd $base/backup; ln -sf $POSTDUMP current)
246 ################################################################################
250 echo "Expiring old database dumps..."
251 (cd $base/backup; $scriptsdir/expire_dumps -d . -p -f "dump_*")
253 ################################################################################
257 # Send a report on NEW/BYHAND packages
258 echo "Nagging ftpteam about NEW/BYHAND packages"
259 dak queue-report | mail -e -s "NEW and BYHAND on $(date +%D)" ftpmaster@ftp-master.debian.org
260 # and one on crufty packages
261 echo "Sending information about crufty packages"
262 dak cruft-report > $webdir/cruft-report-daily.txt
263 dak cruft-report -s experimental >> $webdir/cruft-report-daily.txt
264 cat $webdir/cruft-report-daily.txt | mail -e -s "Debian archive cruft report for $(date +%D)" ftpmaster@ftp-master.debian.org
268 echo "Updating DM html page"
269 $scriptsdir/dm-monitor >$webdir/dm-uploaders.html
271 ################################################################################
273 # Push katie@merkel so it syncs the projectb there. Returns immediately, the sync runs detached
274 echo "Trigger merkels projectb sync"
275 ssh -2 -o BatchMode=yes -o SetupTimeOut=30 -o ConnectTimeout=30 -i ~/.ssh/push_merkel_projectb katie@merkel.debian.org sleep 1 || true
277 ################################################################################
281 ulimit -m 90000 -d 90000 -s 10000 -v 200000
283 echo "Using run-parts to run scripts in $base/scripts/distmnt"
284 run-parts --report $base/scripts/distmnt
288 echo "Exporting package data foo for i18n project"
289 STAMP=$(date "+%Y%m%d%H%M")
290 mkdir -p ${scriptdir}/i18n/${STAMP}
291 cd ${scriptdir}/i18n/${STAMP}
292 dak control-suite -l stable > etch
293 dak control-suite -l testing > lenny
294 dak control-suite -l unstable > sid
295 echo "${STAMP}" > timestamp
296 gpg --secret-keyring /srv/ftp.debian.org/s3kr1t/dot-gnupg/secring.gpg --keyring /srv/ftp.debian.org/s3kr1t/dot-gnupg/pubring.gpg --no-options --batch --no-tty --armour --default-key 6070D3A1 --detach-sign -o timestamp.gpg timestamp
300 ln -sfT ${scriptdir}/i18n/${STAMP} i18n
303 find ./i18n -mtime +2 -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
307 echo "Daily cron scripts successful."
312 echo "Updating stats data"
314 $scriptsdir/update-ftpstats $base/log/* > $base/misc/ftpstats.data
315 R --slave --vanilla < $base/misc/ftpstats.R
319 # Remove the britney lock
322 # Clean up apt-ftparchive's databases
323 echo "Clean up apt-ftparchive's databases"
325 apt-ftparchive -q clean apt.conf
329 # Compress psql backups
330 echo "Compress old psql backups"
332 find -maxdepth 1 -mindepth 1 -type f -name 'dump_*' \! -name '*.bz2' \! -name '*.gz' -mtime +1 |
333 while read dumpname; do
334 echo "Compressing $dumpname"
341 echo "Finally, all is done, sending mail and compressing logfile"
342 exec > /dev/null 2>&1
344 cat "$LOGFILE" | mail -s "Log for dinstall run of ${NOW}" cron@ftp-master.debian.org
347 ################################################################################