ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/misc/scripts/shell/cvslog.sh
Revision: 1.4
Committed: Wed Jun 13 16:02:28 2001 UTC (22 years, 11 months ago) by tdb
Content type: application/x-sh
Branch: MAIN
Changes since 1.3: +1 -1 lines
Log Message:
Now have a commits mailing list which we should be using for this sort of thing.

File Contents

# Content
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 # e-mail addresses
16 TOADDR="commits@i-scream.org.uk"
17 FROMADDR="commits@i-scream.org.uk"
18
19 # cvs path
20 CVS="/usr/bin/cvs"
21
22 # cvs repository
23 CVSROOT="/cvs/i-scream"
24
25 # temporary checkout directory (checked out modules already)
26 CHECKOUTDIR="/home/sites/www.i-scream.org.uk/cvsscripttemp"
27
28 # path to cvs2cl
29 CVS2CLPATH="/home/sites/www.i-scream.org.uk/bin/cvs2cl.pl"
30
31 # command line args for cvs2cl
32 CVS2CLARGS="-w -r -b -t -U ${CVSROOT}/CVSROOT/users -l \"-dyesterday<today\" -g \"-d${CVSROOT}\" -g \"-Q\""
33
34 # cvs2cl command
35 CVS2CL="${CVS2CLPATH} ${CVS2CLARGS}"
36
37 # subject line
38 SUBJECT="i-scream daily commit logs - "
39
40 # full cvs update script
41 FULLCVSUPDATE="/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh"
42
43 # path to sendmail
44 SENDMAIL="/usr/sbin/sendmail"
45
46
47 ## code
48
49 ${FULLCVSUPDATE}
50
51 MODULES=`ls ${CVSROOT}`
52
53 cd ${CHECKOUTDIR}
54
55 for MODULE in ${MODULES}; do
56
57 ${CVS2CL} ${MODULE}
58 if test -r "ChangeLog"; then \
59 ( echo "To: ${TOADDR}"; echo "From: ${FROMADDR}"; \
60 echo "Subject: ${SUBJECT}${MODULE}"; cat ChangeLog; \
61 echo "." ) | ${SENDMAIL} ${TOADDR}; \
62 rm -f ChangeLog
63 fi;
64
65 done