Expand crontab.example
[koha.git] / misc / cronjobs / crontab.example
1 # Koha Example Crontab File
2 # Author: Joe Atzberger <atz@liblime.com>
3 #
4 # This is an example of a crontab file for Debian.  It may not work 
5 # in other versions of crontab, like on Solaris 8 or BSD, for example.
6
7 # While similar in structure, 
8 # this is NOT an example for cron (as root).  Cron takes an extra
9 # argument per line to designate the user to run as.  You could 
10 # reasonably extrapolate the needed info from here though.
11 #
12 # WARNING: These jobs will do things like charge fines, send
13 # potentially VERY MANY emails to patrons and even debar offending
14 # users.  DO NOT RUN OR SCHEDULE these jobs without being sure you
15 # really intend to.  Make sure the relevant message templates are
16 # configured to your liking before scheduling messages to be sent.
17 #
18 # ENVIRONMENT:
19 # First, establish Koha's two important ENV variables.
20
21 PERL5LIB=/home/liblime/kohaclone
22 KOHA_CONF=/home/liblime/kohaclone/etc/koha-conf.xml
23
24 #
25 # MULTIPLE KOHA SUPPORT:
26 # You can still run jobs for this user's additional koha installs, 
27 # by manipulating those variables in the command.
28 #
29 # For example, on the same codebase:
30 # */10 * * * *    KOHA_CONF=/home/liblime/koha-test/etc/koha-conf.xml /home/liblime/kohaclone/misc/migration_tools/rebuild_zebra.pl -b -a -z >/dev/null
31 #
32 # For example, on a separate codebase:
33 # */10 * * * *    KOHA_CONF=/home/liblime/koha-test/etc/koha-conf.xml PERL5LIB=/home/liblime/koha-test /home/liblime/koha-test/misc/migration_tools/rebuild_zebra.pl -b -a -z >/dev/null
34
35 # ADDITIONAL INFO:
36 # See the perldoc of individual scripts to determine what other options
37 # are available.  Check the man page for crontab to understand the 
38 # schedule syntax for your system.  
39 #
40 # NOTE: Don't forget to keep the empty line at the bottom. 
41 # Cron/crontab will choke without it.
42 #
43 # SCHEDULED JOBS:
44 # m h  dom mon dow   command
45 0    1 * * *  /home/liblime/kohaclone/misc/cronjobs/overdue_notices.pl -t
46 5    1 * * *  /home/liblime/kohaclone/misc/cronjobs/fines.pl
47 10   1 * * *  /home/liblime/kohaclone/misc/cronjobs/advance_notices.pl -c
48 # 19 1 * * *  /home/liblime/kohaclone/misc/cronjobs/longoverdue.pl --lost 90=1 --confirm
49 15   * * * *  /home/liblime/kohaclone/misc/cronjobs/process_message_queue.pl
50 52   * * * *  /home/liblime/kohaclone/misc/cronjobs/holds/build_holds_queue.pl >/dev/null 2>&1
51 */10 * * * *  /home/liblime/kohaclone/misc/migration_tools/rebuild_zebra.pl -b -a -z >/dev/null
52 # 20 1 * * *  /usr/sbin/logrotate -s /home/liblime/koha-pro/var/run/zebradb/logstatus /home/liblime/koha-pro/etc/logrotate.conf
53