ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/misc/scripts/shell/cvslog.sh
Revision: 1.2
Committed: Wed Jun 6 13:59:12 2001 UTC (22 years, 11 months ago) by tdb
Content type: application/x-sh
Branch: MAIN
Changes since 1.1: +20 -13 lines
Log Message:
Updated to suit the setup on the new server.
Also now uses the more universal sendmail, rather than the seemingly raptor-only
mailx command :)

File Contents

# User Rev Content
1 tdb 1.1 #!/bin/sh
2    
3     #---------------------------------------------------------
4     # cvslog.sh
5     #
6     # Script to send daily cvslog e-mails.
7     # Written by Tim Bishop [tdb1@ukc.ac.uk] 26/01/2001
8     #
9     # Copyright i-Scream, 2000
10     # http://www.i-scream.org.uk
11     #---------------------------------------------------------
12    
13     ## settings
14    
15 tdb 1.2 # e-mail addresses
16     TOADDR="dev@i-scream.org.uk"
17     FROMADDR="tim@i-scream.org.uk"
18 tdb 1.1
19     # cvs path
20 tdb 1.2 CVS="/usr/bin/cvs"
21 tdb 1.1
22     # cvs repository
23 tdb 1.2 CVSROOT="/cvs/i-scream"
24 tdb 1.1
25     # temporary checkout directory (checked out modules already)
26 tdb 1.2 CHECKOUTDIR="/home/sites/www.i-scream.org.uk/cvsscripttemp"
27 tdb 1.1
28     # path to cvs2cl
29 tdb 1.2 CVS2CLPATH="/home/sites/www.i-scream.org.uk/bin/cvs2cl.pl"
30 tdb 1.1
31     # command line args for cvs2cl
32 tdb 1.2 CVS2CLARGS="-w -r -b -t -U ${CVSROOT}/CVSROOT/users -l \"-dyesterday<today\" -g \"-d${CVSROOT}\" -g \"-Q\""
33 tdb 1.1
34     # cvs2cl command
35     CVS2CL="${CVS2CLPATH} ${CVS2CLARGS}"
36    
37     # subject line
38     SUBJECT="i-scream daily commit logs - "
39    
40 tdb 1.2 # full cvs update script
41     FULLCVSUPDATE="/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh"
42    
43 tdb 1.1
44     ## code
45    
46 tdb 1.2 ${FULLCVSUPDATE}
47    
48     MODULES=`ls ${CVSROOT}`
49    
50 tdb 1.1 cd ${CHECKOUTDIR}
51    
52 tdb 1.2 for MODULE in ${MODULES}; do
53 tdb 1.1
54 tdb 1.2 ${CVS2CL} ${MODULE}
55 tdb 1.1 if test -r "ChangeLog"; then \
56 tdb 1.2 ( echo "To: ${TOADDR}"; echo "From: ${FROMADDR}"; \
57     echo "Subject: ${SUBJECT}${MODULE}"; cat ChangeLog; \
58     echo "." ) | sendmail ${TOADDR}; \
59 tdb 1.1 rm -f ChangeLog
60     fi;
61    
62     done