]> git.decadent.org.uk Git - dak.git/blob - config/debian/cron.unchecked
Loadsa changes to make new cronscript way work
[dak.git] / config / debian / cron.unchecked
1 #!/bin/bash
2 # No way I try to deal with a crippled sh just for POSIX foo.
3
4 # Copyright (C) 2009 Joerg Jaspert <joerg@debian.org>
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation; version 2.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 # exit on errors
20 set -e
21 set -o pipefail
22 # make sure to only use defined variables
23 set -u
24 # ERR traps should be inherited from functions too. (And command
25 # substitutions and subshells and whatnot, but for us the functions is
26 # the important part here)
27 set -E
28
29 # import the general variable set.
30 export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
31 . $SCRIPTVARS
32
33 LOCKDAILY=""
34 LOCKFILE="$lockdir/unchecked.lock"
35 NOTICE="$lockdir/daily.lock"
36 LOCK_BUILDD="$lockdir/buildd.lock"
37
38 # our name
39 PROGRAM="unchecked"
40
41 if [ -e $NOTICE ]; then
42     exit 0;
43 fi
44
45 ########################################################################
46 # Functions                                                            #
47 ########################################################################
48 # common functions are "outsourced"
49 . "${configdir}/common"
50
51 STAMP=$(date "+%Y%m%d%H%M")
52
53 cleanup() {
54     rm -f "$LOCKFILE"
55     if [ ! -z "$LOCKDAILY" ]; then
56         rm -f "$NOTICE"
57     fi
58 }
59
60 function do_buildd () {
61     if lockfile -r3 $NOTICE; then
62         LOCKDAILY="YES"
63         make_buildd_dir
64         wbtrigger
65     fi
66 }
67
68 ########################################################################
69 # the actual unchecked functions follow                                #
70 ########################################################################
71
72 # And use one locale, no matter what the caller has set
73 export LANG=C
74 export LC_ALL=C
75
76 # only run one cron.unchecked
77 if ! lockfile -r8 $LOCKFILE 2> /dev/null; then
78     # echo "aborting cron.unchecked because $LOCKFILE has already been locked"
79     exit 0
80 fi
81 trap cleanup 0
82
83
84 pg_timestamp preunchecked >/dev/null
85
86 # Process policy queues
87 punew stable-new
88 opunew oldstable-new
89 backports_policy
90 dak clean-suites -a backports-policy,policy
91
92 # Finally deal with unchecked
93 do_unchecked
94
95 if [ ! -z "$changes" ]; then
96     sync_debbugs
97     do_buildd
98 fi
99
100 dak contents -l 10000 scan-binary
101 dak contents -l 1000 scan-source
102 pg_timestamp postunchecked >/dev/null