/[webwml]/cron/lessoften
ViewVC logotype

Contents of /cron/lessoften

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.14 - (hide annotations) (download)
Mon Jan 10 01:16:18 2005 UTC (8 years, 4 months ago) by djpig
Branch: MAIN
Changes since 1.13: +0 -7 lines
Move building the release notes to the often cron job like
the rest of the documentation
1 joy 1.1 #!/bin/bash
2    
3     # see README for more information
4    
5     umask 002
6     . /org/www.debian.org/cron/common.sh
7    
8     # locking
9     if lockfile -! -l 43200 -r 0 "$crondir/lessoften.lock"; then
10 kraai 1.10 echo `hostname` is unable to start update, lock file exists. >> $crondir/lessoften.log
11 joy 1.1 exit 1
12     fi
13     trap "rm -f $crondir/lessoften.lock" exit
14    
15     # rotate the previous log file
16     savelog $crondir/lessoften.log &> /dev/null
17    
18     echo "starting the lessoften cron job at `date`" > $crondir/lessoften.log
19    
20     echo "creating mailing-lists.txt..." >> $crondir/lessoften.log
21     make -s -C $webtopdir/webwml/english/MailingLists mailing-lists.txt
22     install -m 664 -g debwww \
23     $webtopdir/webwml/english/MailingLists/mailing-lists.txt \
24     $webdir/misc/mailing-lists.txt
25    
26     echo "copying events/materials/ in place..." >> $crondir/lessoften.log
27     install -d -m 2775 -g debwww $webdir/events/materials
28     cp -a $webtopdir/events-materials/* $webdir/events/materials/
29    
30     # previously in parts/1l10ndata, from bouz
31     cd $crondir/datafiles/
32     echo "updating the database file used to display l10n stats..." >> $crondir/lessoften.log
33 kraai 1.10 wget -q -N http://people.debian.org/~pmachard/l10n/material/data/unstable.gz || { echo "couldn't fetch data/unstable!" >> $crondir/lessoften.log; exit 1; }
34 joy 1.3 gunzip -c -f unstable.gz > unstable.gluck
35     ln -sf $crondir/datafiles/unstable.gluck $webtopdir/webwml/english/international/l10n/data/unstable.gluck
36 joy 1.1
37     # cleanup
38     rm -f unstable.gz
39    
40     echo "extracting the list of languages..." >> $crondir/lessoften.log
41     cd $webtopdir/webwml/english/international/l10n
42 kraai 1.5 ./scripts/list-languages.pl data/unstable.gluck > data/langs
43 debwww 1.2
44     # the below scripts will echo what they are doing themselves
45     $crondir/people_scripts/update.packages+sources >> $crondir/lessoften.log
46     $crondir/people_scripts/update.people.html >> $crondir/lessoften.log
47 joy 1.1
48     echo " ** lessoften cron job done *** " >> $crondir/lessoften.log

  ViewVC Help
Powered by ViewVC 1.1.5