View | Details | Raw Unified | Return to bug 17336
Collapse All | Expand All

(-)a/debian/scripts/koha-create (-1 / +3 lines)
Lines 105-110 generate_config_file() { Link Here
105
        -e "s/__END_BIBLIOS_RETRIEVAL_INFO__/`echo $END_BIBLIOS_RETRIEVAL_INFO`/g" \
105
        -e "s/__END_BIBLIOS_RETRIEVAL_INFO__/`echo $END_BIBLIOS_RETRIEVAL_INFO`/g" \
106
        -e "s/__START_AUTHORITIES_RETRIEVAL_INFO__/`echo $START_AUTHORITIES_RETRIEVAL_INFO`/g" \
106
        -e "s/__START_AUTHORITIES_RETRIEVAL_INFO__/`echo $START_AUTHORITIES_RETRIEVAL_INFO`/g" \
107
        -e "s/__END_AUTHORITIES_RETRIEVAL_INFO__/`echo $END_AUTHORITIES_RETRIEVAL_INFO`/g" \
107
        -e "s/__END_AUTHORITIES_RETRIEVAL_INFO__/`echo $END_AUTHORITIES_RETRIEVAL_INFO`/g" \
108
        -e "s/__API_SECRET__/$API_SECRET/g" \
108
        -e "s/__DB_NAME__/$mysqldb/g" \
109
        -e "s/__DB_NAME__/$mysqldb/g" \
109
        -e "s/__DB_HOST__/$mysqlhost/g" \
110
        -e "s/__DB_HOST__/$mysqlhost/g" \
110
        -e "s/__DB_USER__/$mysqluser/g" \
111
        -e "s/__DB_USER__/$mysqluser/g" \
Lines 403-409 DEFAULT_MEMCACHED_PREFIX="koha_" Link Here
403
UPLOAD_PATH_BASE="/var/lib/koha"
404
UPLOAD_PATH_BASE="/var/lib/koha"
404
UPLOAD_DIR="uploads"
405
UPLOAD_DIR="uploads"
405
UPLOAD_PATH=""
406
UPLOAD_PATH=""
406
407
# Generate a randomizaed API secret
408
API_SECRET="$(pwgen -s 64 1)"
407
# SRU server variables
409
# SRU server variables
408
ENABLE_SRU="no"
410
ENABLE_SRU="no"
409
SRU_SERVER_PORT=""
411
SRU_SERVER_PORT=""
(-)a/debian/templates/koha-conf-site.xml.in (-2 / +4 lines)
Lines 292-298 __END_SRU_PUBLICSERVER__ Link Here
292
 <memcached_servers>__MEMCACHED_SERVERS__</memcached_servers>
292
 <memcached_servers>__MEMCACHED_SERVERS__</memcached_servers>
293
 <memcached_namespace>__MEMCACHED_NAMESPACE__</memcached_namespace>
293
 <memcached_namespace>__MEMCACHED_NAMESPACE__</memcached_namespace>
294
294
295
<!-- true type font mapping accoding to type from $font_types in C4/Creators/Lib.pm -->
295
 <!-- Secret passphrase used by Mojolicious for signed cookies -->
296
 <api_secret_passphrase>__API_SECRET__</api_secret_passphrase>
297
298
 <!-- true type font mapping accoding to type from $font_types in C4/Creators/Lib.pm -->
296
 <ttf>
299
 <ttf>
297
    <font type="TR" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf</font>
300
    <font type="TR" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf</font>
298
    <font type="TB" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-Bold.ttf</font>
301
    <font type="TB" >/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-Bold.ttf</font>
299
- 

Return to bug 17336