Revision: | 1.1 |
Committed: | Sun Aug 1 10:39:52 2004 UTC (20 years, 3 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. |
# | 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 |