]> git.donarmstrong.com Git - dak.git/blob - config/debian/cron.reboot
26d507e47c0263bcd28930deb2650bf90c653923
[dak.git] / config / debian / cron.reboot
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 # common functions are "outsourced"
34 . "${configdir}/common"
35
36 # usually we are not using debug logs. Set to 1 if you want them.
37 DEBUG=0
38
39 # our name
40 PROGRAM="dinstall_reboot"
41
42 # where do we want mails to go? For example log entries made with error()
43 if [ "x$(hostname -s)x" != "xfranckx" ]; then
44     # Not our ftpmaster host
45     MAILTO=${MAILTO:-"root"}
46 else
47     # Yay, ftpmaster
48     MAILTO=${MAILTO:-"ftpmaster@debian.org"}
49 fi
50
51 # Marker for dinstall start
52 DINSTALLSTART="${lockdir}/dinstallstart"
53 # Marker for dinstall end
54 DINSTALLEND="${lockdir}/dinstallend"
55
56 set +e
57 starttime=$(/usr/bin/stat -c %Z "${DINSTALLSTART}")
58 endtime=$(/usr/bin/stat -c %Z "${DINSTALLEND}")
59 set -e
60
61 if [ ${endtime} -gt ${starttime} ]; then
62         # Great, last dinstall run did seem to end without trouble, no need to rerun
63         log "Last dinstall run did end without trouble, not rerunning"
64         exit 0
65 else
66         # Hrm, it looks like we did not successfully end the last run.
67         # This either means dinstall did abort due to an error, or we had a reboot
68         # No way to tell, so lets restart and see what happens.
69
70         # Make sure we are not fooled by some random touching of the files, only
71         # really restart if we have the first stage stampfile there, indicating that
72         # dinstall got started
73         if [ -f "${stagedir}/savetimestamp" ]; then
74                 log "Seems we have to restart a dinstall run after reboot"
75                 ${configdir}/cron.dinstall
76         fi
77 fi