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

(-)a/debian/koha-common.cron.daily (+1 lines)
Lines 26-29 koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/cleanup_database.pl Link Here
26
koha-foreach --chdir --enabled --noemail /usr/share/koha/bin/cronjobs/cleanup_database.pl --confirm --mail
26
koha-foreach --chdir --enabled --noemail /usr/share/koha/bin/cronjobs/cleanup_database.pl --confirm --mail
27
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/holds/auto_unsuspend_holds.pl > /dev/null 2>&1
27
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/holds/auto_unsuspend_holds.pl > /dev/null 2>&1
28
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/merge_authorities.pl -b
28
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/merge_authorities.pl -b
29
koha-foreach --chdir --enabled /usr/share/koha/bin/cronjobs/anonymise_last_borrowers.pl
29
koha-run-backups --days 2 --output /var/spool/koha
30
koha-run-backups --days 2 --output /var/spool/koha
(-)a/misc/cronjobs/anonymise_last_borrowers.pl (-3 / +2 lines)
Lines 39-45 use C4::Log; Link Here
39
39
40
sub usage {
40
sub usage {
41
    print STDERR <<USAGE;
41
    print STDERR <<USAGE;
42
Usage: $0  --days DAYS  [-h|--help]
42
Usage: $0  [-h|--help]
43
   -v --verbose       gives a little more information
43
   -v --verbose       gives a little more information
44
   -h --help          prints this help message, and exits, ignoring all
44
   -h --help          prints this help message, and exits, ignoring all
45
                      other options
45
                      other options
Lines 48-54 USAGE Link Here
48
    exit $_[0];
48
    exit $_[0];
49
}
49
}
50
50
51
my ( $help, $days, $verbose );
51
my ( $help, $verbose );
52
52
53
GetOptions(
53
GetOptions(
54
    'h|help'       => \$help,
54
    'h|help'       => \$help,
55
- 

Return to bug 23260