Bugzilla – Attachment 29270 Details for
Bug 8566
Enable koha-foreach to insert the instancename into commands
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch for feature update
0001-Bug-8566-Enable-koha-foreach-to-insert-the-instancen.patch (text/plain), 1.79 KB, created by
Reed Wade
on 2014-06-26 06:43:29 UTC
(
hide
)
Description:
patch for feature update
Filename:
MIME Type:
Creator:
Reed Wade
Created:
2014-06-26 06:43:29 UTC
Size:
1.79 KB
patch
obsolete
>From 5ec3ac217fd96b7116f7c35de93494196e5d68ea Mon Sep 17 00:00:00 2001 >From: Reed Wade <reed@typist.geek.nz> >Date: Thu, 26 Jun 2014 02:24:07 -0400 >Subject: [PATCH] Bug 8566: Enable koha-foreach to insert the instancename into > commands > >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. >--- > debian/docs/koha-foreach.xml | 1 + > debian/scripts/koha-foreach | 3 ++- > 2 files changed, 3 insertions(+), 1 deletion(-) > >diff --git a/debian/docs/koha-foreach.xml b/debian/docs/koha-foreach.xml >index c8a612c..4e84463 100644 >--- a/debian/docs/koha-foreach.xml >+++ b/debian/docs/koha-foreach.xml >@@ -29,6 +29,7 @@ > > <refsect1><title>Description</title> > <para>Run a command for each Koha instance. Takes the same arguments as koha-list.</para> >+ <para>The string "__instancename__" is replaced in the argument list with the name of the Koha instance in each iteration.</para> > </refsect1> > > <refsect1><title>See also</title> >diff --git a/debian/scripts/koha-foreach b/debian/scripts/koha-foreach >index 6bda414..6e4d98d 100755 >--- a/debian/scripts/koha-foreach >+++ b/debian/scripts/koha-foreach >@@ -32,12 +32,13 @@ 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" \ >- "$@" 2>&1 >&3 | sed -e "s/^/$name: /" >&2 3>&- >+ ${cmd} 2>&1 >&3 | sed -e "s/^/$name: /" >&2 3>&- > exec 3>&- > ) | sed -e "s/^/$name: /" > >-- >1.9.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 8566
:
29270
|
29273
|
29274
|
29309