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

(-)a/debian/scripts/koha-create (+4 lines)
Lines 111-116 generate_config_file() { Link Here
111
        -e "s/__UNIXGROUP__/$username/g" \
111
        -e "s/__UNIXGROUP__/$username/g" \
112
        -e "s#__TEMPLATE_CACHE_DIR__#$TEMPLATE_CACHE_DIR#g" \
112
        -e "s#__TEMPLATE_CACHE_DIR__#$TEMPLATE_CACHE_DIR#g" \
113
        -e "s#__TIMEZONE__#$TIMEZONE#g" \
113
        -e "s#__TIMEZONE__#$TIMEZONE#g" \
114
        -e "s#__KEY__#$KEY#g" \
114
        -e "s#__UPLOAD_PATH__#$UPLOAD_PATH#g" \
115
        -e "s#__UPLOAD_PATH__#$UPLOAD_PATH#g" \
115
        -e "s#__TMP_PATH__#$TMP_PATH#g" \
116
        -e "s#__TMP_PATH__#$TMP_PATH#g" \
116
        -e "s/__LOG_DIR__/\/var\/log\/koha\/$name/g" \
117
        -e "s/__LOG_DIR__/\/var\/log\/koha\/$name/g" \
Lines 495-500 if [ "${CLO_ELASTICSEARCH_SERVER}" != "" ]; then Link Here
495
    ELASTICSEARCH_SERVER="${CLO_ELASTICSEARCH_SERVER}"
496
    ELASTICSEARCH_SERVER="${CLO_ELASTICSEARCH_SERVER}"
496
fi
497
fi
497
498
499
KEY=$(htpasswd -bnBC 10 "" password | tr -d ':\n' | sed 's/$2y/$2a/');
500
501
498
if [ "$ENABLE_SRU" != "no" ]; then
502
if [ "$ENABLE_SRU" != "no" ]; then
499
    enable_sru_server
503
    enable_sru_server
500
fi
504
fi
(-)a/debian/templates/koha-conf-site.xml.in (+3 lines)
Lines 403-408 __END_SRU_PUBLICSERVER__ Link Here
403
      server. e.g. Antarctica/South_Pole -->
403
      server. e.g. Antarctica/South_Pole -->
404
 <timezone>__TIMEZONE__</timezone>
404
 <timezone>__TIMEZONE__</timezone>
405
405
406
 <!-- This is the salt used to generated anonymized content -->
407
 <key>__KEY__</key>
408
406
 <!-- flag for development purposes
409
 <!-- flag for development purposes
407
      dev_install is used to adjust some paths specific to dev installations
410
      dev_install is used to adjust some paths specific to dev installations
408
      strict_sql_modes should not be used in a production environment
411
      strict_sql_modes should not be used in a production environment
(-)a/etc/koha-conf.xml (-1 / +3 lines)
Lines 227-232 __PAZPAR2_TOGGLE_XML_POST__ Link Here
227
      server. e.g. Antarctica/South_Pole -->
227
      server. e.g. Antarctica/South_Pole -->
228
 <timezone></timezone>
228
 <timezone></timezone>
229
229
230
 <!-- This is the salt used to generated anonymized content -->
231
 <key>__KEY__</key>
232
230
 <!-- flag for development purposes
233
 <!-- flag for development purposes
231
      dev_install is used to adjust some paths specific to dev installations
234
      dev_install is used to adjust some paths specific to dev installations
232
      strict_sql_modes should not be used in a production environment
235
      strict_sql_modes should not be used in a production environment
233
- 

Return to bug 24151