8bd14a12f1
install from a clean build directory. PUBDIR is where the installed files end up for the public site. DESTDIR is now suffixed with '-clean', and always purged before a new build starts. When the build finishes, rsync populates PUBDIR from the resulting DESTDIR files. When doing a full site refresh, 'rsync --delete' is used to purge stale files. Sponsored by: The FreeBSD Foundation
57 lines
1.5 KiB
Bash
Executable file
57 lines
1.5 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# NOTE: Changes to this file is NOT automatically used for the web
|
|
# site build on www.FreeBSD.org. If an update to the main build
|
|
# script is required, please contact webmaster@FreeBSD.org or a member
|
|
# of the wwwadm team.
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PATH=/bin:/usr/bin:/usr/local/bin
|
|
SVNROOT=svn://svn.FreeBSD.org
|
|
PUBDIR=/usr/local/www/www.freebsd.org
|
|
DESTDIR="${PUBDIR}-clean"
|
|
RSYNC_FLAGS="-avH"
|
|
PINDEX_OVERRIDE=/usr/ports/INDEX-9
|
|
GEN_INDEX=yes
|
|
export USER=www-data
|
|
export PATH DESTDIR PINDEX_OVERRIDE GEN_INDEX PUBDIR
|
|
|
|
WEBMAILTO=freebsd-doc@FreeBSD.org
|
|
export WEBMAILTO
|
|
|
|
FLAGDIR=/usr/local/www/build
|
|
|
|
# We always build these - they are fast
|
|
export WITH_PORTS_GROWTH=YES
|
|
export WITH_PRSTATS=YES
|
|
|
|
# Flags are ordered by more extensive to less
|
|
if [ -e $FLAGDIR/fullbuild-clean.flag ]; then
|
|
export BUILD_RELNOTES=YES
|
|
# TODO - tell webupdate to do clean via env variable
|
|
# webupdate will remove flag file
|
|
RSYNC_FLAGS="${RSYNC_FLAGS} --delete"
|
|
elif [ -e $FLAGDIR/fullbuild-all-lang.flag ]; then
|
|
export BUILD_RELNOTES=YES
|
|
elif [ -e $FLAGDIR/fullbuild-en.flag ]; then
|
|
export BUILD_RELNOTES=YES
|
|
export ENGLISH_ONLY=YES
|
|
else
|
|
export WEB_ONLY=YES
|
|
fi
|
|
rm -rf ${DESTDIR}/*
|
|
rm -f $FLAGDIR/fullbuild-all-lang.flag $FLAGDIR/fullbuild-en.flag
|
|
|
|
# 30m
|
|
LOCKF_WAIT=1800
|
|
if [ "$1" = "-f" ]; then
|
|
LOCKF_WAIT=0
|
|
fi
|
|
|
|
export RSYNC_FLAGS
|
|
|
|
nice -5 lockf -s -t $LOCKF_WAIT /usr/local/www/build/lock.webupdate \
|
|
sh -c "/usr/local/www/bin/webupdate ; \
|
|
/usr/sbin/newsyslog -f /home/www/etc/webupdate_newsyslog.conf -Fr -t ''"
|
|
|