5 export SCRIPTVARS=/srv/ftp.debian.org/dak/config/debian/vars
9 LOCKFILE="$lockdir/unchecked.lock"
10 NOTICE="$lockdir/daily.lock"
12 if [ -e $NOTICE ]; then exit 0; fi
14 STAMP=$(date "+%Y%m%d%H%M")
18 if [ ! -z "$LOCKDAILY" ]; then
23 # only run one cron.unchecked
24 if lockfile -r3 $LOCKFILE; then
28 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
29 report=$queuedir/REPORT
30 timestamp=$(date "+%Y-%m-%d %H:%M")
32 if [ ! -z "$changes" ]; then
33 echo "$timestamp": "$changes" >> $report
34 dak process-unchecked -a $changes >> $report
38 rsync -aq --remove-source-files $queuedir/bts_version_track/ bugs-sync:/org/bugs.debian.org/versions/queue/ftp-master/
40 if lockfile -r3 $NOTICE; then
42 psql projectb -A -t -q -c "SELECT filename FROM queue_build WHERE queue = 0 AND suite = 5 AND in_queue = true AND filename ~ 'd(sc|eb)$'" > $dbdir/dists/unstable_accepted.list
44 dak make-overrides &>/dev/null
45 rm -f override.sid.all3 override.sid.all3.src
46 for i in main contrib non-free main.debian-installer; do
47 cat override.sid.$i >> override.sid.all3
48 if [ "$i" != "main.debian-installer" ]; then
49 cat override.sid.$i.src >> override.sid.all3.src
53 apt-ftparchive -qq -o APT::FTPArchive::Contents=off generate apt.conf.buildd
57 apt-ftparchive -qq -o APT::FTPArchive::Release::Origin="Debian" -o APT::FTPArchive::Release::Label="Debian" -o APT::FTPArchive::Release::Description="buildd incoming" -o APT::FTPArchive::Release::Architectures="${archs}" release . > Release
58 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 Release.gpg Release
61 mkdir -p tree/${STAMP}
62 cp -al ${incoming}/buildd/. tree/${STAMP}/
63 ln -sf ${incoming}/builddweb tree/${STAMP}
64 find ./tree -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
66 . $configdir/cron.buildd
69 echo "$timestamp": Nothing to do >> $report