X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=config%2Fdebian%2Fcronscript;h=595c6b6aa198c2388dae8b61c521220b23ae5857;hb=b2d06df451fcf23b97f572a4253ccfbd26d58f45;hp=2418d79a75249ad441c8e6e8e4ad303a391a574d;hpb=8f72f604a89bb3ff3dba82521dd9fc474208f189;p=dak.git diff --git a/config/debian/cronscript b/config/debian/cronscript index 2418d79a..595c6b6a 100755 --- a/config/debian/cronscript +++ b/config/debian/cronscript @@ -1,7 +1,7 @@ #!/bin/bash # No way I try to deal with a crippled sh just for POSIX foo. -# Copyright (C) 2009-2015 Joerg Jaspert +# Copyright (C) 2009-2016 Joerg Jaspert # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -38,9 +38,9 @@ set -u # the important part here) set -E -# The extglob shell option is enabled using the shopt builtin, several -# extended pattern matching operators are recognized. We use it for -# the POSSIBLEARGS and the first case ${ARGS} matching +# If the extglob shell option is enabled using the shopt builtin, +# several extended pattern matching operators are recognized. We use +# it for the POSSIBLEARGS and the first case ${ARGS} matching. shopt -s extglob # And use one locale, no matter what the caller has set @@ -61,9 +61,6 @@ declare -lr ARG=${1:-"meh"} # program name is the (lower cased) first argument. PROGRAM="${ARG}" -# And the following types of cronscripts exists -declare -lr POSSIBLEARGS='+(unchecked|dinstall|hourly|daily|weekly|monthly|yearly)' - # set DEBUG if you want to see a little more logs (needs to be used more) DEBUG=${DEBUG:-0} @@ -78,14 +75,13 @@ case ${ARG} in ;; *) cat - < /dev/null; then - # log "aborting cron.unchecked because $LOCK_UNCHECKED has already been locked" - exit 0 - fi - TMPFILES="${TMPFILES} ${LOCK_UNCHECKED}" - ;; - dinstall) - ;; - hourly) - ;; - daily) - ;; - weekly) - ;; - monthly) - ;; - yearly) - ;; - *) - error "Unknown arg ${ARG}" - exit 42 - ;; - esac + # If there is a precronscript function, we run it. + prefunc=$(type -t precronscript || echo "") + if [[ -n ${prefunc} ]] && [[ ${prefunc} = function ]]; then + precronscript + fi # An easy access by name for the current log ln -sf ${LOGFILE} ${logdir}/${PROGRAM} @@ -236,32 +207,17 @@ esac # we need to wait for the background processes before the end of the cron script wait - # Common to all cron scripts log "Cron script successful, all done" # Redirect output to another file, as we want to compress our logfile # and ensure its no longer used exec > "$logdir/after${PROGRAM}.log" 2>&1 - case ${ARG} in - unchecked) - ;; - dinstall) - logstats ${LOGFILE} - state "all done" - touch "${DINSTALLEND}" - ;; - hourly) - ;; - daily) - ;; - weekly) - ;; - monthly) - ;; - yearly) - ;; - esac + # If there is a postcronscript function, we run it. + postfunc=$(type -t postcronscript || echo "") + if [[ -n ${postfunc} ]] && [[ ${postfunc} = function ]]; then + postcronscript + fi # Now, at the very (successful) end of this run, make sure we remove # our stage files, so the next dinstall run will do it all again.