4 export SCRIPTVARS=/org/security.debian.org/dak/config/debian-security/vars
7 report=$queuedir/REPORT
8 reportdis=$queuedir/REPORT.disembargo
9 timestamp=$(date "+%Y-%m-%d %H:%M")
13 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
14 if [ -n "$changes" ]; then
16 echo "$timestamp": "$changes" >> $report
17 dak process-unchecked -a $changes >> $report
22 changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
24 if [ -n "$changes" ]; then
26 echo "$timestamp": "$changes" >> $reportdis
27 dak process-unchecked -a $changes >> $reportdis
28 echo "--" >> $reportdis
31 if ! $doanything; then
32 echo "$timestamp": Nothing to do >> $report
36 sh $masterdir/cron.buildd