summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'admin/www.gentoo.org/scripts/nightly.sh')
-rw-r--r--admin/www.gentoo.org/scripts/nightly.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/admin/www.gentoo.org/scripts/nightly.sh b/admin/www.gentoo.org/scripts/nightly.sh
deleted file mode 100644
index b7c1d48ed7..0000000000
--- a/admin/www.gentoo.org/scripts/nightly.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-echo ">>> Starting Web update..."
-
-#to get GENTOO_WEB_DOCROOT and GENTOO_WEB_SCRIPTS defined
-source ~/.bashrc
-
-#to get all arches in our package listing:
-export ACCEPT_KEYWORDS="x86 ppc alpha sparc hppa mips arm"
-export PORTDIR="$HOME/gentoo-x86"
-export FEATURES="-cvs -digest"
-
-[ -z "${GENTOO_WEB_DOCROOT}" ] && echo "\$WEBROOT not set; exiting" && exit 1
-[ -z "${GENTOO_WEB_SCRIPTS}" ] && echo "\$GENTOO_WEB_SCRIPTS not set; exiting" && exit 1
-
-${GENTOO_WEB_SCRIPTS}/cvs-page.sh
-${GENTOO_WEB_SCRIPTS}/use-index.py
-# no idea why the next script was being run, so commenting it out until someone complains
-#${GENTOO_WEB_SCRIPTS}/site-archive.sh
-${GENTOO_WEB_SCRIPTS}/news-index.sh
-# no idea why the next script was being run, so commenting it out until someone complains
-#${GENTOO_WEB_SCRIPTS}/doc-tarball.sh
-${GENTOO_WEB_SCRIPTS}/icons2xml_v2.pl
-# this script is called every 15 minutes now via crontab, so we'll comment it out here
-#${GENTOO_WEB_SCRIPTS}/cvs-repo-update.sh
-
-# this script takes a while (5+ minutes) to run, so leave it near the end
-${GENTOO_WEB_SCRIPTS}/distrowatch.sh
-
-# this script also takes a while to run since it uploads the log files to a central server
-${GENTOO_WEB_SCRIPTS}/rsync-weblogs.sh
-
-# this script takes the longest of all -- ~1 hour or more. leave it as the *very* last one
-#${GENTOO_WEB_SCRIPTS}/pkgs.py
-
-echo ">>> Nightly Web update done."