Checkout RELENG_5 relnotes.

This commit is contained in:
Hiroki Sato 2004-08-21 10:39:28 +00:00
parent f4ae35c6d7
commit 3a8d8ee5db
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=22039

View file

@ -31,7 +31,7 @@
# 2 - failure in CVS operations
# 3 - failure in make operations
#
# $FreeBSD: www/tools/webupdate,v 1.10 2003/11/18 11:00:54 kuriyama Exp $
# $FreeBSD: www/tools/webupdate,v 1.11 2004/07/04 14:33:58 hrs Exp $
#
#
@ -73,7 +73,7 @@ WEBMAILTO=${WEBMAILTO:-${DEFAULT_WEBMAILTO}};
# assumes that the directory right below that is the language code.
# This works fine if all the languages are in a directory called
# 'doc', and not at all if they aren't.
subtrees='www doc relnotes/doc relnotes/man4 relnotes4/doc relnotes4/man4';
subtrees='www doc relnotes/doc relnotes/man4 relnotes5/doc relnotes5/man4 relnotes4/doc relnotes4/man4';
#
# Update the checked out copies. Check out new copies every Sunday or
@ -105,11 +105,19 @@ if [ $cond ]; then
# Check out the new copies. This creates all the $subtrees.
cvs -qR checkout -P www >> $LOGFILE 2>&1 || exit 2;
cvs -qR checkout -P doc >> $LOGFILE 2>&1 || exit 2;
test -d relnotes || mkdir relnotes;
cvs -qR checkout -Pd relnotes/doc src/release/doc >> \
$LOGFILE 2>&1 || exit 2;
cvs -qR checkout -Pd relnotes/man4 src/share/man/man4 >> \
$LOGFILE 2>&1 || exit 2;
test -d relnotes5 || mkdir relnotes5;
cvs -qR checkout -Pd relnotes5/doc -rRELENG_5 src/release/doc >> \
$LOGFILE 2>&1 || exit 2;
cvs -qR checkout -Pd relnotes5/man4 -rRELENG_5 src/share/man/man4 >> \
$LOGFILE 2>&1 || exit 2;
test -d relnotes4 || mkdir relnotes4;
cvs -qR checkout -Pd relnotes4/doc -rRELENG_4 src/release/doc >> \
$LOGFILE 2>&1 || exit 2;