7 export SCRIPTVARS=/srv/security-master.debian.org/dak/config/debian-security/vars
10 # And use one locale, no matter what the caller has set
14 report=$queuedir/REPORT
15 reportdis=$queuedir/REPORT.disembargo
16 timestamp=$(date "+%Y-%m-%d %H:%M")
19 LOCKFILE="$lockdir/unchecked.lock"
21 # So first we should go and see if any process-policy action is done
22 dak process-policy embargoed | mail -a "X-Debian: DAK" -e -s "Automatically accepted from embargoed" team@security.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
23 dak process-policy unembargoed | mail -a "X-Debian: DAK" -e -s "Automatically accepted from unembargoed" team@security.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
25 # Now, if this really did anything, we can then sync it over. Files
26 # in newstage mean they are (late) accepts of security stuff, need
27 # to sync to ftp-master
33 if ! lockfile -r8 "$LOCKFILE"; then
34 echo "aborting cron.unchecked because $LOCKFILE has already been locked"
40 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
41 if [ -n "$changes" ]; then
43 echo "$timestamp": ${changes:-"Nothing to do in newstage"} >> $report
44 rsync -a -q $newstage/. /srv/queued/ftpmaster/.
45 dak process-upload -a -d "$newstage" >> $report
49 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
50 if [ -n "$changes" ]; then
52 echo "$timestamp": ${changes:-"Nothing to do in unchecked"} >> $report
53 dak process-upload -a -d "$unchecked" >> $report
57 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
59 if [ -n "$changes" ]; then
61 echo "$timestamp": ${changes:-"Nothing to do in disembargo"} >> $reportdis
62 dak process-upload -a -d "$disembargo" >> $reportdis
65 if [ "${doanything}" = "false" ] && [ "${dopolicy}" = "false" ]; then
66 echo "$timestamp": Nothing to do >> $report
70 dak manage-build-queues -a
72 if [ "x${dopolicy}x" = "xtruex" ]; then
73 # We had something approved from a policy queue, push out new archive
75 #dak generate-filelist
78 #apt-ftparchive generate apt.conf
79 dak generate-packages-sources2
81 /srv/security-master.debian.org/dak/config/debian-security/make-mirror.sh
82 sudo -u archvsync -H /home/archvsync/signal_security
88 $configdir/cron.buildd