From: Joerg Jaspert Date: Mon, 7 Mar 2011 21:47:10 +0000 (+0100) Subject: during unchecked no longer recreate testing indices, only do them when importing... X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=31b5c07ebbf63dd0e98a22f633b159514bfd3fae during unchecked no longer recreate testing indices, only do them when importing new data there Signed-off-by: Joerg Jaspert --- diff --git a/config/debian/cron.unchecked b/config/debian/cron.unchecked index 65ede7aa..e1d40a7f 100755 --- a/config/debian/cron.unchecked +++ b/config/debian/cron.unchecked @@ -77,7 +77,7 @@ function do_buildd () { function do_dists () { cd $configdir dak generate-filelist - dak generate-packages-sources >/dev/null + dak generate-packages-sources -s unstable experimental >/dev/null } ######################################################################## diff --git a/scripts/debian/import_dataset.sh b/scripts/debian/import_dataset.sh index 183baddd..48e95790 100755 --- a/scripts/debian/import_dataset.sh +++ b/scripts/debian/import_dataset.sh @@ -69,6 +69,9 @@ if [ "x${DO_CHANGELOG}x" = "xtruex" ]; then find . -maxdepth 1 -mindepth 1 -type f -mmin +2880 -name 'ChangeLog.*' -delete fi +echo "Regenerating Packages/Sources files, be patient" +dak generate-packages-sources -s ${IMPORTSUITE} >/dev/null + echo "Done" exit 0