d7a55f5890
koha-foreach has been modified to replace __instancename__ with $name on each iteration using sed. The docbook file for koha-foreach has also been updated to reflect the new functionality. To test: koha-foreach ls -ld /etc/koha/sites/__instancename__ should list directories instead of giving an error message. Signed-off-by: Magnus Enger <digitalutvikling@gmail.com> The suggested example with ls works as expected, as does my more complex example with fines.pl: koha-foreach --enabled /usr/share/koha/bin/cronjobs/fines.pl \ --out /var/log/koha/__instancename__/ The man page looks good too. Signed-off-by: Robin Sheat <robin@catalyst.net.nz> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
46 lines
1.3 KiB
Bash
Executable file
46 lines
1.3 KiB
Bash
Executable file
#!/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=""
|
|
while [ ! -z "$1" ]
|
|
do
|
|
case "$1" in
|
|
--email) listopts="$listopts --email";;
|
|
--noemail) listopts="$listopts --noemail";;
|
|
--enabled) listopts="$listopts --enabled";;
|
|
*) break;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
for name in $(koha-list $listopts)
|
|
do
|
|
cmd=`echo "$@" | sed -e s/__instancename__/${name}/g`
|
|
(
|
|
exec 3>&1
|
|
sudo -u "$name-koha" \
|
|
env PERL5LIB=/usr/share/koha/lib \
|
|
KOHA_CONF="/etc/koha/sites/$name/koha-conf.xml" \
|
|
${cmd} 2>&1 >&3 | sed -e "s/^/$name: /" >&2 3>&-
|
|
exec 3>&-
|
|
) | sed -e "s/^/$name: /"
|
|
|
|
done
|
|
|