X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=config%2Fdebian%2Fdinstall.functions;h=c5aeed131656094cdd76e318d19e91d6afb2f9a8;hb=dec160172b136c712dddf2c942ee03a52e8e0b88;hp=4f3932dcea814d5973433d65bea1dc5faebcce5c;hpb=68300ce743acaae9fd3ea129d86ebe2b75cfb47a;p=dak.git diff --git a/config/debian/dinstall.functions b/config/debian/dinstall.functions index 4f3932dc..c5aeed13 100644 --- a/config/debian/dinstall.functions +++ b/config/debian/dinstall.functions @@ -32,7 +32,7 @@ function onerror() { # pushing merkels QA user, part one function merkel1() { log "Telling merkels QA user that we start dinstall" - ssh -2 -i ~dak/.ssh/push_merkel_qa -o BatchMode=yes -o SetupTimeOut=90 -o ConnectTimeout=90 qa@merkel.debian.org sleep 1 + ssh -2 -i ~dak/.ssh/push_merkel_qa -o BatchMode=yes -o SetupTimeOut=90 -o ConnectTimeout=90 qa@qa.debian.org sleep 1 } # Create the postgres dump files @@ -604,3 +604,12 @@ Current action: ${1} Action start: ${RIGHTNOW} EOF } + +# extract changelogs and stuff +function changelogs() { + log "Extracting changelogs" + dak make-changelog -e + mkdir -p ${exportpublic}/changelogs + cd ${exportpublic}/changelogs + rsync -aHW --delete --delete-after --ignore-errors ${exportdir}/changelogs/. . +}