View | Details | Raw Unified | Return to bug 19532
Collapse All | Expand All

(-)a/debian/koha-common.cron.daily (+2 lines)
Lines 17-22 Link Here
17
17
18
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/automatic_renewals.pl -c
18
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/automatic_renewals.pl -c
19
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/automatic_checkin.pl
19
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/automatic_checkin.pl
20
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/recalls/expire_recalls.pl
21
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/recalls/overdue_recalls.pl
20
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/fines.pl
22
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/fines.pl
21
koha-foreach --chdir --enabled --email /usr/share/koha/bin/cronjobs/overdue_notices.pl -t
23
koha-foreach --chdir --enabled --email /usr/share/koha/bin/cronjobs/overdue_notices.pl -t
22
koha-foreach --chdir --enabled --email /usr/share/koha/bin/cronjobs/advance_notices.pl -c
24
koha-foreach --chdir --enabled --email /usr/share/koha/bin/cronjobs/advance_notices.pl -c
(-)a/misc/cronjobs/crontab.example (-4 / +3 lines)
Lines 45-54 KOHA_CRON_PATH = /usr/share/koha/bin/cronjobs Link Here
45
# SCHEDULED JOBS:
45
# SCHEDULED JOBS:
46
# m h  dom mon dow   user command
46
# m h  dom mon dow   user command
47
47
48
48
# RECALLS + AUTOMATIC RENEWAL + AUTOMATIC CHECK-IN + FINES + OVERDUE NOTICES
49
# AUTOMATIC RENEWAL + AUTOMATIC CHECK-IN + FINES + OVERDUE NOTICES
50
# Sequence is important - renew what can be renewed, check things in if set to, charge fines for the rest, print fine amount into overdue notices
49
# Sequence is important - renew what can be renewed, check things in if set to, charge fines for the rest, print fine amount into overdue notices
51
5    1 * * *  __KOHA_USER__ $KOHA_CRON_PATH/automatic_renewals.pl -c; $KOHA_CRON_PATH/automatic_checkin.pl ; $KOHA_CRON_PATH/fines.pl; $KOHA_CRON_PATH/overdue_notices.pl -t
50
# Handle expired recalls and overdue recalls before fines.pl runs
51
5    1 * * *  __KOHA_USER__ $KOHA_CRON_PATH/recalls/expire_recalls.pl; $KOHA_CRON_PATH/recalls/overdue_recalls.pl; $KOHA_CRON_PATH/automatic_renewals.pl -c; $KOHA_CRON_PATH/automatic_checkin.pl ; $KOHA_CRON_PATH/fines.pl; $KOHA_CRON_PATH/overdue_notices.pl -t
52
52
53
# ADVANCE NOTICES
53
# ADVANCE NOTICES
54
10   1 * * *  __KOHA_USER__  $KOHA_CRON_PATH/advance_notices.pl -c
54
10   1 * * *  __KOHA_USER__  $KOHA_CRON_PATH/advance_notices.pl -c
55
- 

Return to bug 19532