2 # No way I try to deal with a crippled sh just for POSIX foo.
4 # Copyright (C) 2009 Joerg Jaspert <joerg@debian.org>
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.
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.
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.
22 # make sure to only use defined variables
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)
29 # We sleep a while here, as cron - and as such @reboot jobs like this
30 # one - are started pretty early during boot. With parts of the system
31 # still missing, most noticable for us is a not-yet-started postgres...
34 # import the general variable set.
35 export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
38 # common functions are "outsourced"
39 . "${configdir}/common"
41 # usually we are not using debug logs. Set to 1 if you want them.
45 PROGRAM="dinstall_reboot"
47 # where do we want mails to go? For example log entries made with error()
48 if [ "x$(hostname -s)x" != "xfranckx" ]; then
49 # Not our ftpmaster host
50 MAILTO=${MAILTO:-"root"}
53 MAILTO=${MAILTO:-"ftpmaster@debian.org"}
56 # Marker for dinstall start
57 DINSTALLSTART="${lockdir}/dinstallstart"
58 # Marker for dinstall end
59 DINSTALLEND="${lockdir}/dinstallend"
62 starttime=$(/usr/bin/stat -c %Z "${DINSTALLSTART}")
63 endtime=$(/usr/bin/stat -c %Z "${DINSTALLEND}")
66 if [ ${endtime} -gt ${starttime} ]; then
67 # Great, last dinstall run did seem to end without trouble, no need to rerun
68 log "Last dinstall run did end without trouble, not rerunning"
71 # Hrm, it looks like we did not successfully end the last run.
72 # This either means dinstall did abort due to an error, or we had a reboot
73 # No way to tell, so lets restart and see what happens.
75 # Make sure we are not fooled by some random touching of the files, only
76 # really restart if we have the first stage stampfile there, indicating that
77 # dinstall got started
78 if [ -f "${stagedir}/savetimestamp" ]; then
79 log "Seems we have to restart a dinstall run after reboot"
80 ${configdir}/cron.dinstall