]> git.decadent.org.uk Git - dak.git/blob - config/debian/dinstall.variables
Merge remote branch 'buxy/pu/debianqueued-fix' into merge
[dak.git] / config / debian / dinstall.variables
1 # usually we are not using debug logs. Set to 1 if you want them.
2 DEBUG=0
3
4 # our name
5 PROGRAM="dinstall"
6
7 # where do we want mails to go? For example log entries made with error()
8 if [ "x$(hostname -s)x" != "xriesx" ]; then
9     # Not our ftpmaster host
10     MAILTO=${MAILTO:-"root"}
11 else
12     # Yay, ftpmaster
13     MAILTO=${MAILTO:-"ftpmaster@debian.org"}
14 fi
15
16 # How many logfiles to keep
17 LOGROTATE=${LOGROTATE:-400}
18
19 # Marker for dinstall start
20 DINSTALLSTART="${lockdir}/dinstallstart"
21 # Marker for dinstall end
22 DINSTALLEND="${lockdir}/dinstallend"
23
24 # lock cron.unchecked (it immediately exits when this exists)
25 LOCK_DAILY="$lockdir/daily.lock"
26
27 # Lock cron.unchecked from doing work
28 LOCK_ACCEPTED="$lockdir/unchecked.lock"
29
30 # Lock process-new from doing work
31 LOCK_NEW="$lockdir/processnew.lock"
32
33 # This file is simply used to indicate to britney whether or not
34 # the Packages file updates completed sucessfully.  It's not a lock
35 # from our point of view
36 LOCK_BRITNEY="$lockdir/britney.lock"
37
38 # If this file exists we exit immediately after the currently running
39 # function is done
40 LOCK_STOP="$lockdir/archive.stop"
41
42 # Lock buildd updates
43 LOCK_BUILDD="$lockdir/buildd.lock"