Bugzilla – Attachment 73426 Details for
Bug 20428
MARC import fails on Debian Stretch
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20428: Add the option to specify a tmp uploads dir
Bug-20428-Add-the-option-to-specify-a-tmp-uploads-.patch (text/plain), 5.83 KB, created by
Tomás Cohen Arazi (tcohen)
on 2018-03-29 14:13:46 UTC
(
hide
)
Description:
Bug 20428: Add the option to specify a tmp uploads dir
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2018-03-29 14:13:46 UTC
Size:
5.83 KB
patch
obsolete
>From a1cc5f947953ba529b3b6f64d7b983363b46b592 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Thu, 29 Mar 2018 10:25:43 -0300 >Subject: [PATCH] Bug 20428: Add the option to specify a tmp uploads dir > >--- > debian/docs/koha-create.xml | 9 +++++++++ > debian/scripts/koha-create | 21 +++++++++++++++++++++ > debian/scripts/koha-create-dirs | 1 + > debian/templates/koha-conf-site.xml.in | 1 + > etc/koha-conf.xml | 1 + > 5 files changed, 33 insertions(+) > >diff --git a/debian/docs/koha-create.xml b/debian/docs/koha-create.xml >index 632140d471..18088605ad 100644 >--- a/debian/docs/koha-create.xml >+++ b/debian/docs/koha-create.xml >@@ -42,6 +42,7 @@ > <arg><option>--sru-port</option> port</arg> > <arg><option>--template-cache-dir</option> directory</arg> > <arg><option>--upload-path</option> directory</arg> >+ <arg><option>--upload-tmp-path</option> directory</arg> > <arg><option>--letsencrypt</option></arg> > <arg><option>--help</option>|<option>-h</option></arg> > >@@ -201,6 +202,14 @@ > </listitem> > </varlistentry> > >+ <varlistentry> >+ <term><option>--upload-tmp-path</option></term> >+ <listitem> >+ <para>Specify a <option>directory</option> for storing the temporarily uploaded files of the instance. >+ It defaults to <filename>/var/lib/koha/instance/uploads_tmp</filename>.</para> >+ </listitem> >+ </varlistentry> >+ > <varlistentry> > <term><option>--letsencrypt</option></term> > <listitem> >diff --git a/debian/scripts/koha-create b/debian/scripts/koha-create >index cdfa63d813..61db1430d9 100755 >--- a/debian/scripts/koha-create >+++ b/debian/scripts/koha-create >@@ -74,6 +74,8 @@ Options: > /var/cache/koha/<instance>/templates > --upload-path dir Set a user defined upload_path. It defaults to > /var/lib/koha/<instance>/uploads >+ --upload-tmp-path dir Set a user defined upload_tmp_path. It defaults to >+ /var/lib/koha/<instance>/uploads_tmp > --letsencrypt Set up a https-only site with letsencrypt certificates > --help,-h Show this help. > >@@ -117,6 +119,7 @@ generate_config_file() { > -e "s/__UNIXGROUP__/$username/g" \ > -e "s#__TEMPLATE_CACHE_DIR__#$TEMPLATE_CACHE_DIR#g" \ > -e "s#__UPLOAD_PATH__#$UPLOAD_PATH#g" \ >+ -e "s#__UPLOAD_TMP_PATH__#$UPLOAD_TMP_PATH#g" \ > -e "s/__LOG_DIR__/\/var\/log\/koha\/$name/g" \ > -e "s/__PLUGINS_DIR__/\/var\/lib\/koha\/$name\/plugins/g" \ > -e "s/__MEMCACHED_NAMESPACE__/$MEMCACHED_NAMESPACE/g" \ >@@ -328,6 +331,17 @@ set_upload_path() > fi > } > >+set_upload_tmp_path() >+{ >+ local instance="$1" >+ >+ if [ "$CLO_UPLOAD_TMP_PATH" != "" ]; then >+ UPLOAD_TMP_PATH=$CLO_UPLOAD_TMP_PATH >+ else >+ UPLOAD_TMP_PATH="$UPLOAD_PATH_BASE/$instance/$UPLOAD_TMP_DIR" >+ fi >+} >+ > enable_sru_server() > { > # remove the commenting symbols >@@ -414,6 +428,9 @@ DEFAULT_MEMCACHED_PREFIX="koha_" > UPLOAD_PATH_BASE="/var/lib/koha" > UPLOAD_DIR="uploads" > UPLOAD_PATH="" >+# hardcoded upload_tmp_path >+UPLOAD_TMP_DIR="uploads_tmp" >+UPLOAD_TMP_PATH="" > # cache base dir > CACHE_DIR_BASE="/var/cache/koha" > # Generate a randomizaed API secret >@@ -460,6 +477,7 @@ CLO_AUTHORITIES_INDEXING_MODE="" > CLO_MEMCACHED_SERVERS="" > CLO_MEMCACHED_PREFIX="" > CLO_UPLOAD_PATH="" >+CLO_UPLOAD_TMP_PATH="" > CLO_LETSENCRYPT="" > CLO_TEMPLATE_CACHE_DIR="" > >@@ -507,6 +525,8 @@ while true ; do > CLO_TEMPLATE_CACHE_DIR="$2" ; shift 2 ;; > --upload-path) > CLO_UPLOAD_PATH="$2" ; shift 2 ;; >+ --upload-tmp-path) >+ CLO_UPLOAD_TMP_PATH="$2" ; shift 2 ;; > --letsencrypt) > CLO_LETSENCRYPT="yes" ; shift ;; > -h|--help) >@@ -572,6 +592,7 @@ set_authorities_indexing_mode $AUTHORITIES_INDEXING_MODE $ZEBRA_MARC_FORMAT > name="$1" > > set_upload_path $name >+set_upload_tmp_path $name > > if [ "$op" = use ] && [ "$CLO_DATABASE" = "" ] && > ( [ ! -f "$PASSWDFILE" ] || [ ! `cat $PASSWDFILE | grep "^$name:"` ] ) >diff --git a/debian/scripts/koha-create-dirs b/debian/scripts/koha-create-dirs >index 6d47c157bc..f7777dffb5 100755 >--- a/debian/scripts/koha-create-dirs >+++ b/debian/scripts/koha-create-dirs >@@ -55,6 +55,7 @@ do > userdir "$name" "/var/lib/koha/$name/biblios/tmp" > userdir "$name" "/var/lib/koha/$name/plugins" > userdir "$name" "/var/lib/koha/$name/uploads" >+ userdir "$name" "/var/lib/koha/$name/uploads_tmp" > userdir "$name" "/var/lock/koha/$name" > userdir "$name" "/var/lock/koha/$name/authorities" > userdir "$name" "/var/lock/koha/$name/biblios" >diff --git a/debian/templates/koha-conf-site.xml.in b/debian/templates/koha-conf-site.xml.in >index 6056ee2140..e8cda132a9 100644 >--- a/debian/templates/koha-conf-site.xml.in >+++ b/debian/templates/koha-conf-site.xml.in >@@ -261,6 +261,7 @@ __END_SRU_PUBLICSERVER__ > <pluginsdir>__PLUGINS_DIR__</pluginsdir> <!-- This entry can be repeated to use multiple directories --> > <enable_plugins>0</enable_plugins> > <upload_path>__UPLOAD_PATH__</upload_path> >+ <upload_tmp_path>__UPLOAD_TMP_PATH__</upload_tmp_path> > <intranetdir>/usr/share/koha/intranet/cgi-bin</intranetdir> > <opacdir>/usr/share/koha/opac/cgi-bin/opac</opacdir> > <opachtdocs>/usr/share/koha/opac/htdocs/opac-tmpl</opachtdocs> >diff --git a/etc/koha-conf.xml b/etc/koha-conf.xml >index a9a078146a..b35cd33866 100644 >--- a/etc/koha-conf.xml >+++ b/etc/koha-conf.xml >@@ -93,6 +93,7 @@ __PAZPAR2_TOGGLE_XML_POST__ > <pluginsdir>__PLUGINS_DIR__</pluginsdir> <!-- This entry can be repeated to use multiple directories --> > <enable_plugins>0</enable_plugins> > <upload_path></upload_path> >+ <upload_tmp_path></upload_tmp_path> > <intranetdir>__INTRANET_CGI_DIR__</intranetdir> > <opacdir>__OPAC_CGI_DIR__/opac</opacdir> > <opachtdocs>__OPAC_TMPL_DIR__</opachtdocs> >-- >2.16.3
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 20428
:
73426
|
73427
|
73428
|
73429
|
73430
|
73431
|
75159
|
75160
|
75161
|
75162
|
75163
|
75164
|
75169
|
75170
|
75171
|
75172
|
75275
|
75279
|
75280
|
75281
|
75282
|
75283
|
75286
|
75293
|
75294
|
75295
|
75296
|
75297
|
75298
|
75305