ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/misc/scripts/shell/cvslog.sh
Revision: 1.8
Committed: Tue Feb 5 14:04:10 2002 UTC (22 years, 3 months ago) by tdb
Content type: application/x-sh
Branch: MAIN
Changes since 1.7: +1 -1 lines
Log Message:
Hide the errors from the fullcvsupdate script. Maybe I should fix that
script instead? :)

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/cvs2cl2.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 CVS2CLARGS="-w -r -t -U ${CVSROOT}/CVSROOT/users -l \"-dyesterday<today\" -g \"-d${CVSROOT}\" -g \"-Q\""
34
35 # cvs2cl command
36 CVS2CL="${CVS2CLPATH} ${CVS2CLARGS}"
37
38 # subject line
39 SUBJECT="i-scream daily commit logs - "
40
41 # full cvs update script
42 FULLCVSUPDATE="/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh"
43
44 # path to sendmail
45 SENDMAIL="/usr/sbin/sendmail"
46
47 # cvslog webpage for this day :)
48 DATE=`/bin/date --date="1 day ago" "+%Y/%m/%d"`
49 CVSLOGURL="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=date&date=${DATE}&module="
50 CVSLOGLINE="This log is viewable online at ${CVSLOGURL}"
51
52 ## code
53
54 ${FULLCVSUPDATE} >/dev/null 2>&1
55
56 MODULES=`ls ${CVSROOT}`
57
58 cd ${CHECKOUTDIR}
59
60 for MODULE in ${MODULES}; do
61
62 ${CVS2CL} ${MODULE}
63 if test -r "ChangeLog"; then \
64 ( echo "To: ${TOADDR}"; echo "From: ${FROMADDR}"; \
65 echo "Subject: ${SUBJECT}${MODULE}"; echo ${CVSLOGLINE}${MODULE}; \
66 echo; echo; cat ChangeLog; \
67 echo "." ) | ${SENDMAIL} ${TOADDR}; \
68 rm -f ChangeLog
69 fi;
70
71 done