diff options
author | 2003-10-01 01:15:29 +0000 | |
---|---|---|
committer | 2003-10-01 01:15:29 +0000 | |
commit | bf4a84a8c07559b3f902a22bff95e256e6cf90e2 (patch) | |
tree | e3b08e66954014b1d980f8bf07a32ede2126b1d7 /admin | |
parent | removed old, unecessary scripts (diff) | |
download | gentoo-bf4a84a8c07559b3f902a22bff95e256e6cf90e2.tar.gz gentoo-bf4a84a8c07559b3f902a22bff95e256e6cf90e2.tar.bz2 gentoo-bf4a84a8c07559b3f902a22bff95e256e6cf90e2.zip |
adjusted order to make things run smoother
Diffstat (limited to 'admin')
-rw-r--r-- | admin/www.gentoo.org/scripts/nightly.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/admin/www.gentoo.org/scripts/nightly.sh b/admin/www.gentoo.org/scripts/nightly.sh index 759d8c08c0..33a569521f 100644 --- a/admin/www.gentoo.org/scripts/nightly.sh +++ b/admin/www.gentoo.org/scripts/nightly.sh @@ -13,7 +13,6 @@ export FEATURES="-cvs -digest" [ -z "${WEBSCRIPTS}" ] && echo "\$WEBSCRIPTS not set; exiting" && exit 1 ${WEBSCRIPTS}/cvs-page.sh -${WEBSCRIPTS}/pkgs.py ${WEBSCRIPTS}/use-index.py # no idea why the next script was being run, so commenting it out until someone complains #${WEBSCRIPTS}/site-archive.sh @@ -24,11 +23,13 @@ ${WEBSCRIPTS}/icons2xml_v2.pl # this script is called every 15 minutes now via crontab, so we'll comment it out here #${WEBSCRIPTS}/cvs-repo-update.sh -# this script takes a while (5+ minutes) to run, so leave it as the last one. +# this script takes a while (5+ minutes) to run, so leave it near the end ${WEBSCRIPTS}/distrowatch.sh # this script also takes a while to run since it uploads the log files to a central server ${WEBSCRIPTS}/rsync-weblogs.sh +# this script takes the longest of all -- ~1 hour or more. leave it as the *very* last one +${WEBSCRIPTS}/pkgs.py echo ">>> Nightly Web update done." |