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

(-)a/debian/koha-common.cron.daily (+1 lines)
Lines 26-29 koha-foreach --enabled /usr/share/koha/bin/cronjobs/services_throttle.pl > /dev/ Link Here
26
koha-foreach --enabled /usr/share/koha/bin/cronjobs/cleanup_database.pl --sessions --zebraqueue 10 --list-invites
26
koha-foreach --enabled /usr/share/koha/bin/cronjobs/cleanup_database.pl --sessions --zebraqueue 10 --list-invites
27
koha-foreach --enabled --noemail /usr/share/koha/bin/cronjobs/cleanup_database.pl --mail
27
koha-foreach --enabled --noemail /usr/share/koha/bin/cronjobs/cleanup_database.pl --mail
28
koha-foreach --enabled /usr/share/koha/bin/cronjobs/holds/auto_unsuspend_holds.pl > /dev/null 2>&1
28
koha-foreach --enabled /usr/share/koha/bin/cronjobs/holds/auto_unsuspend_holds.pl > /dev/null 2>&1
29
koha-foreach --enabled /usr/share/koha/bin/cronjobs/merge_authorities.pl -b
29
koha-run-backups --days 2 --output /var/spool/koha
30
koha-run-backups --days 2 --output /var/spool/koha
(-)a/installer/data/mysql/atomicupdate/bug_9988c_cron.perl (+6 lines)
Line 0 Link Here
1
$DBversion = 'XXX';  # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    print "IMPORTANT NOTE: If you are not using a regular Debian install, please verify that you no longer use misc/migration_tools/merge_authority.pl in your cron files AND add misc/cronjobs/merge_authorities.pl to cron now. This job is no longer optional! You need it to perform larger authority merges.\n";
4
    SetVersion( $DBversion );
5
    print "Upgrade to $DBversion done (Bug 9988 - Cron alert)\n";
6
}
(-)a/misc/cronjobs/crontab.example (-1 / +3 lines)
Lines 94-96 KOHA_CRON_PATH = /usr/share/koha/bin/cronjobs Link Here
94
94
95
# share_usage_with_koha_community.pl every months
95
# share_usage_with_koha_community.pl every months
96
0 0 1 * *  __KOHA_USER__ $KOHA_CRON_PATH/share_usage_with_koha_community.pl
96
0 0 1 * *  __KOHA_USER__ $KOHA_CRON_PATH/share_usage_with_koha_community.pl
97
- 
97
98
# run merge authorities
99
20 1 * * * __KOHA_USER__ $KOHA_CRON_PATH/merge_authorities.pl -b

Return to bug 9988