Changes between Version 1 and Version 2 of ProjectTasks
- Timestamp:
- Apr 26, 2007, 1:42:38 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProjectTasks
v1 v2 1 1 = Periodic tasks = 2 2 3 '''Periodic tasks''' are programs that are run periodically. They are executed by the [StartTool bin/start --cron] program, which you should run from cron. To do this, run crontaband add a line of the form3 '''Periodic tasks''' are programs that are run periodically. They are executed by the [StartTool bin/start --cron] program, which you should run from cron. To do this, run '''crontab -e''' and add a line of the form 4 4 {{{ 5 5 0,5,10,15,20,25,30,35,40,45,50,55 * * * * HOME/projects/PROJECT/bin/start --cron … … 12 12 {{{ 13 13 <task> 14 <cmd> get_load</cmd>15 <output> get_load.out</output>16 <period> 5 min</period>17 [ <host> host.ip</host> ]18 [ <disabled> 1</disabled> ]19 [ <always_run> 1</always_run> ]14 <cmd> get_load </cmd> 15 <output> get_load.out </output> 16 <period> 5 min </period> 17 [ <host> host.ip </host> ] 18 [ <disabled> 0|1 </disabled> ] 19 [ <always_run> 0|1 </always_run> ] 20 20 </task> 21 21 <task> 22 <cmd> echo "HI" | mail root@example.com</cmd>23 <output> /dev/null</output>24 <period> 1 day</period>22 <cmd> run_in_ops update_forum_activities.php </cmd> 23 <output> update_form_activities.out </output> 24 <period> 1 day </period> 25 25 </task> 26 26 <task> … … 55 55 Run this task regardless of whether or not the project is enabled (for example, a script that logs the current CPU load of the host machine). 56 56 57 A project newly created by [MakeProject make_project] has no periodic tasks. Here are some programs you might want to run as periodic tasks:57 A project newly created by [MakeProject make_project] has periodic tasks that run the following: 58 58 59 59 db_dump:: … … 61 61 update_profile_pages.php:: 62 62 Generate HTML files with lists of links to user profiles, organized alphabetically and by country. Recommended period: a few days. 63 update_stats -update_teams -update_users -update_hosts::63 update_stats:: 64 64 Update the recent average credit fields of users, teams, and hosts. This is important if you use send personalized [VolunteerRecruit mass emails] or [http://boinc.berkeley.edu/reminder_email.php reminder emails], or use recent credit to enable message-board posting. Recommended period: every few days. 65 65 update_uotd.php::