X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=config%2Fdebian%2Fcron.dinstall;h=701754caf722f02355d0deea8555d9df96cf89c6;hb=800a4cfe507f7d2359d15db9b03cc778760df0b8;hp=a9e9bd180be29c0a54af9c8b3ad7c291cf387dea;hpb=610b08292f816e81e7dea5446bbdd22effb434d7;p=dak.git diff --git a/config/debian/cron.dinstall b/config/debian/cron.dinstall index a9e9bd18..701754ca 100755 --- a/config/debian/cron.dinstall +++ b/config/debian/cron.dinstall @@ -1,7 +1,7 @@ #!/bin/bash # No way I try to deal with a crippled sh just for POSIX foo. -# Copyright (C) 2009 Joerg Jaspert +# Copyright (C) 2009-2012 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 @@ -27,6 +27,7 @@ # exit on errors set -e +set -o pipefail # make sure to only use defined variables set -u # ERR traps should be inherited from functions too. (And command @@ -72,7 +73,9 @@ function stage() { error=${ERR:-"true"} - STAGEFILE="${stagedir}/${FUNC}" + ARGS=${ARGS:-""} + STAGEFILE="${stagedir}/${FUNC}_${ARGS}" + STAGEFILE=${STAGEFILE// /_} if [ -f "${STAGEFILE}" ]; then stamptime=$(/usr/bin/stat -c %Z "${STAGEFILE}") unixtime=$(date +%s) @@ -159,7 +162,7 @@ state "Startup" lockfile -l 3600 "${LOCK_DAILY}" trap onerror ERR -trap cleanup EXIT TERM HUP INT QUIT +trap remove_daily_lock EXIT TERM HUP INT QUIT touch "${LOCK_BRITNEY}" @@ -172,7 +175,7 @@ GO=( stage $GO GO=( - FUNC="merkel1" + FUNC="qa1" TIME="init" ARGS="" ERR="false" @@ -180,9 +183,9 @@ GO=( stage $GO & GO=( - FUNC="pgdump_pre" + FUNC="pg_timestamp" TIME="pg_dump1" - ARGS="" + ARGS="predinstall" ERR="" ) stage $GO @@ -204,29 +207,29 @@ GO=( stage $GO lockfile "$LOCK_ACCEPTED" -lockfile "$LOCK_NEW" +trap remove_all_locks EXIT TERM HUP INT QUIT GO=( FUNC="punew" TIME="p-u-new" - ARGS="proposedupdates" + ARGS="stable-new" ERR="false" ) stage $GO -#GO=( -# FUNC="opunew" -# TIME="o-p-u-new" -# ARGS="oldproposedupdates" -# ERR="false" -#) -#stage $GO +GO=( + FUNC="opunew" + TIME="o-p-u-new" + ARGS="oldstable-new" + ERR="false" +) +stage $GO GO=( - FUNC="newstage" - TIME="newstage" + FUNC="backports_policy" + TIME="backports-policy" ARGS="" - ERR="" + ERR="false" ) stage $GO @@ -254,7 +257,7 @@ GO=( ARGS="" ERR="" ) -stage $GO +#stage $GO GO=( FUNC="fingerprints" @@ -287,8 +290,6 @@ GO=( ARGS="" ERR="" ) -# Careful: When we ever go and remove this monster-long thing, we have to check the backgrounded -# functions before it. We no longer have a 1.5hour sync point then. stage $GO state "dists/" @@ -301,24 +302,24 @@ GO=( stage $GO GO=( - FUNC="release" - TIME="release files" + FUNC="gitpdiff" + TIME="gitpdiff" ARGS="" ERR="" ) -stage $GO +#stage $GO GO=( - FUNC="dakcleanup" - TIME="cleanup" + FUNC="release" + TIME="release files" ARGS="" ERR="" ) stage $GO GO=( - FUNC="buildd_dir" - TIME="buildd_dir" + FUNC="dakcleanup" + TIME="cleanup" ARGS="" ERR="" ) @@ -333,14 +334,6 @@ GO=( ) stage $GO -GO=( - FUNC="mkuploaders" - TIME="mkuploaders" - ARGS="" - ERR="" -) -stage $GO - GO=( FUNC="copyoverrides" TIME="copyoverrides" @@ -381,9 +374,16 @@ GO=( ) stage $GO -rm -f "$LOCK_ACCEPTED" -rm -f "$LOCK_NEW" -rm -f "${LOCK_DAILY}" +GO=( + FUNC="ddaccess" + TIME="ddaccessible sync" + ARGS="" + ERR="false" +) +stage $GO + +remove_all_locks +trap - EXIT TERM HUP INT QUIT ts "locked part finished" state "postlock" @@ -397,12 +397,12 @@ GO=( stage $GO & GO=( - FUNC="pgdump_post" + FUNC="pg_timestamp" TIME="pg_dump2" - ARGS="" + ARGS="postdinstall" ERR="" ) -stage $GO & +stage $GO GO=( FUNC="expire" @@ -420,14 +420,6 @@ GO=( ) stage $GO & -GO=( - FUNC="reports" - TIME="reports" - ARGS="" - ERR="" -) -stage $GO & - GO=( FUNC="dm" TIME="" @@ -445,16 +437,16 @@ GO=( stage $GO & GO=( - FUNC="merkel2" - TIME="merkel projectb push" + FUNC="mirrorpush" + TIME="mirrorpush" ARGS="" ERR="false" ) stage $GO & GO=( - FUNC="mirrorpush" - TIME="mirrorpush" + FUNC="mirrorpush-backports" + TIME="mirrorpush-backports" ARGS="" ERR="false" ) @@ -487,37 +479,16 @@ stage $GO & rm -f "${LOCK_BRITNEY}" GO=( - FUNC="pgdakdev" - TIME="dak-dev db" - ARGS="" - ERR="false" -) -stage $GO & - -GO=( - FUNC="merkel3" - TIME="merkel ddaccessible sync" - ARGS="" - ERR="false" -) -stage $GO & - -GO=( - FUNC="compress" - TIME="compress" + FUNC="cleantransactions" + TIME="" ARGS="" ERR="" ) -stage $GO & - -GO=( - FUNC="aptftpcleanup" - TIME="apt-ftparchive cleanup" - ARGS="" - ERR="false" -) stage $GO +# we need to wait for the background processes before the end of dinstall +wait + log "Daily cron scripts successful, all done" exec > "$logdir/afterdinstall.log" 2>&1