summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorRob Holland <robh@gentoo.org>2003-07-14 09:17:39 +0000
committerRob Holland <robh@gentoo.org>2003-07-14 09:17:39 +0000
commitef2895a01b16c878dfe10ef5c20d9e0d61954a58 (patch)
tree19f4bab13fa2d777b628bfaddd810d48818dd96c /admin
parent2003 07 14 3/4 translation (diff)
downloadgentoo-ef2895a01b16c878dfe10ef5c20d9e0d61954a58.tar.gz
gentoo-ef2895a01b16c878dfe10ef5c20d9e0d61954a58.tar.bz2
gentoo-ef2895a01b16c878dfe10ef5c20d9e0d61954a58.zip
include gentoo-src in viewcvs
Diffstat (limited to 'admin')
-rw-r--r--admin/www.gentoo.org/scripts/cvs-repo-update.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/admin/www.gentoo.org/scripts/cvs-repo-update.sh b/admin/www.gentoo.org/scripts/cvs-repo-update.sh
index 8d2cbf3ec0..4c8b19975c 100644
--- a/admin/www.gentoo.org/scripts/cvs-repo-update.sh
+++ b/admin/www.gentoo.org/scripts/cvs-repo-update.sh
@@ -11,16 +11,20 @@
source ~/.bashrc
WORKDIR=/home/httpd
+RSYNC="RSYNC_RSH=ssh rsync"
# create the directory if this is the first time this has run
mkdir -p ${WORKDIR}/cvsroot
# grab a recent copy of the cvs modules for viewcvs
-RSYNC_RSH=ssh rsync -a cvs.gentoo.org:/home/cvsroot/gentoo \
+${RSYNC} -a cvs.gentoo.org:/home/cvsroot/gentoo \
--exclude /home/cvsroot/gentoo/admin/ ${WORKDIR}/cvsroot/gentoo
-RSYNC_RSH=ssh rsync -a cvs.gentoo.org:/home/cvsroot/gentoo-x86 \
+${RSYNC} -a cvs.gentoo.org:/home/cvsroot/gentoo-x86 \
${WORKDIR}/cvsroot/gentoo-x86
+${RSYNC} -a cvs.gentoo.org:/home/cvsroot/gentoo-src \
+${WORKDIR}/cvsroot/gentoo-src
+
#done