ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/misc/scripts/shell/wwwcvsupdate.sh
Revision: 1.1
Committed: Sun Aug 1 10:39:52 2004 UTC (19 years, 9 months ago) by tdb
Content type: application/x-sh
Branch: MAIN
CVS Tags: HEAD
Log Message:
Catch a lot of old URL's and update them. Also remove a couple of old files
that aren't used.

File Contents

# User Rev Content
1 tdb 1.1 #!/bin/sh
2    
3     CVSUP="/usr/local/bin/cvsup"
4     FLAGS="-Z -L 0 -g -1"
5     SUPFILE="/home/iscream/wwwcvsup/supfile"
6    
7     CVSUPCMD="${CVSUP} ${FLAGS} ${SUPFILE}"
8    
9     STOPFILE="/web/i-scream/htdocs/STOP.UPDATES"
10    
11     if test -r "${STOPFILE}"; then \
12     echo "update blocked by ${STOPFILE}"; \
13     else \
14     ${CVSUPCMD}; \
15     fi
16