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

(-)a/debian/koha-common.cron.daily (+1 lines)
Lines 16-21 Link Here
16
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
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/fines.pl
20
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/fines.pl
20
koha-foreach --chdir --enabled --email /usr/share/koha/bin/cronjobs/overdue_notices.pl -t
21
koha-foreach --chdir --enabled --email /usr/share/koha/bin/cronjobs/overdue_notices.pl -t
21
koha-foreach --chdir --enabled --email /usr/share/koha/bin/cronjobs/advance_notices.pl -c
22
koha-foreach --chdir --enabled --email /usr/share/koha/bin/cronjobs/advance_notices.pl -c
(-)a/misc/cronjobs/crontab.example (-4 / +3 lines)
Lines 46-54 KOHA_CRON_PATH = /usr/share/koha/bin/cronjobs Link Here
46
# m h  dom mon dow   user command
46
# m h  dom mon dow   user command
47
47
48
48
49
# AUTOMATIC RENEWAL + FINES + OVERDUE NOTICES
49
# AUTOMATIC RENEWAL + AUTOMATIC CHECK-IN + FINES + OVERDUE NOTICES
50
# Sequence is important - renew what can be renewed, charge fines for the rest, print fine amount into 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
51
5    1 * * *  __KOHA_USER__ $KOHA_CRON_PATH/automatic_renewals.pl -c; $KOHA_CRON_PATH/fines.pl; $KOHA_CRON_PATH/overdue_notices.pl -t
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
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 23207