Skip to content

Commit

Permalink
Bug 13585: Add a cronjob which send UsageStats monthly.
Browse files Browse the repository at this point in the history
This patch introduces entries for monthly running the share_usage_with_koha_community.pl
script to the packages and also the crontab.example file for manual
installs use.

Edit: I fixed the Copyright line

Signed-off-by: Tomas Cohen Arazi <[email protected]>

Signed-off-by: Jonathan Druart <[email protected]>
Signed-off-by: Tomas Cohen Arazi <[email protected]>
  • Loading branch information
JulianFiol authored and tomascohen committed Sep 7, 2015
1 parent bcab241 commit bb4b7f4
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
19 changes: 19 additions & 0 deletions debian/koha-common.cron.monthly
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/sh
# /etc/cron.monthly/koha-common -- Monthly housekeeping tasks for all Kohas.
# Copyright 2015 Biblibre
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.


koha-foreach --enabled /usr/share/koha/bin/cronjobs/share_usage_with_koha_community.pl
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Administration:
choices:
yes: Share
no: "Don't share"
- anonymous Koha usage data with the Koha community. You can see the data on the <a href="http://hea.koha-community.org">Hea Koha community website</a>.
- anonymous Koha usage data with the Koha community. You can see the data on the <a href="http://hea.koha-community.org">Hea Koha community website</a>. You have to run misc/cronjobs/share_usage_with_koha_community.pl in a cronjob.
-
- The library name
- pref: UsageStatsLibraryName
Expand Down
3 changes: 3 additions & 0 deletions misc/cronjobs/crontab.example
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,6 @@ KOHA_CRON_PATH = /usr/share/koha/bin/cronjobs

# every day at 3AM renew all issues scheduled for automatic renewal
0 3 * * * __KOHA_USER__ $KOHA_CRON_PATH/automatic_renewals.pl

# share_usage_with_koha_community.pl every months
0 0 1 * * __KOHA_USER__ $KOHA_CRON_PATH/share_usage_with_koha_community.pl

0 comments on commit bb4b7f4

Please sign in to comment.