~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/nightly.sh

  • Committer: Tom Haddon
  • Date: 2008-05-20 21:39:20 UTC
  • mto: This revision was merged to the branch mainline in revision 6336.
  • Revision ID: tom.haddon@canonical.com-20080520213920-e1lqlovfmq10oq9v
Use python2.4 in nightly.sh, mirror_prober.sh and import_blacklist.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
cd /srv/launchpad.net/production/launchpad/cronscripts
40
40
 
41
41
echo == Expiring memberships `date` ==
42
 
python flag-expired-memberships.py -q
 
42
python2.4 flag-expired-memberships.py -q
43
43
 
44
44
echo == Recalculating karma `date` ==
45
 
python foaf-update-karma-cache.py -q
 
45
python2.4 foaf-update-karma-cache.py -q
46
46
 
47
47
echo == Updating cached statistics `date` ==
48
 
python update-stats.py -q
 
48
python2.4 update-stats.py -q
49
49
 
50
50
echo == Updating package cache `date` ==
51
 
python update-pkgcache.py -q
 
51
python2.4 update-pkgcache.py -q
52
52
 
53
53
echo == Updating CVE database `date` ==
54
 
python update-cve.py -q
 
54
python2.4 update-cve.py -q
55
55
 
56
56
echo == Expiring questions `date` ==
57
 
python expire-questions.py
 
57
python2.4 expire-questions.py
58
58
 
59
59
### echo == Expiring bugs `date` ==
60
 
### python expire-bugtasks.py
 
60
### python2.4 expire-bugtasks.py
61
61
 
62
62
echo == Product Release Finder `date` ==
63
 
python product-release-finder.py -q
 
63
python2.4 product-release-finder.py -q
64
64
 
65
65
# checkwatches.py is scheduled in the /code/pqm/launchpad_crontabs branch.
66
66
### echo == Updating bug watches `date` ==
67
 
### python checkwatches.py
 
67
### python2.4 checkwatches.py
68
68
 
69
69
echo == POFile stats `date` ==
70
 
python rosetta-pofile-stats.py
 
70
python2.4 rosetta-pofile-stats.py
71
71
 
72
72
echo == Updating bugtask target name caches `date` ==
73
 
python update-bugtask-targetnamecaches.py -q
 
73
python2.4 update-bugtask-targetnamecaches.py -q
74
74
 
75
75
rm -f $LOCK
76
76