Add koha-foreach, a script to run a command for each Koha instance.
authorLars Wirzenius <lars@catalyst.net.nz>
Tue, 25 May 2010 01:44:22 +0000 (13:44 +1200)
committerGalen Charlton <gmcharlt@gmail.com>
Tue, 25 May 2010 11:59:45 +0000 (07:59 -0400)
Use script to enable the build_Holds_queue.pl cron job.

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
debian/koha-common.cron.hourly [new file with mode: 0644]
debian/scripts/koha-foreach [new file with mode: 0755]

diff --git a/debian/koha-common.cron.hourly b/debian/koha-common.cron.hourly
new file mode 100644 (file)
index 0000000..4724ca8
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/sh
+# /etc/cron.hourly/koha-common -- Hourly housekeeping tasks for all Kohas.
+# Copyright 2010  Catalyst IT, Ltd
+# 
+# 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/holds/build_holds_queue.pl
diff --git a/debian/scripts/koha-foreach b/debian/scripts/koha-foreach
new file mode 100755 (executable)
index 0000000..80152bc
--- /dev/null
@@ -0,0 +1,37 @@
+#!/bin/sh
+# koha-foreach -- run a command for each Koha instance
+# Copyright 2010  Catalyst IT, Ltd
+# 
+# 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/>.
+
+
+set -e
+
+
+listopts=""
+if [ "$1" = --enabled ]
+then
+    listopts="--enabled"
+    shift
+fi
+
+
+for name in $(koha-list $listopts)
+do
+    sudo -u "$name-koha" \
+    env PERL5LIB=/usr/share/koha/lib \
+        KOHA_CONF="/etc/koha/sites/$name/koha-conf.xml" \
+        "$@"
+done
+