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 402-407 __END_SRU_PUBLICSERVER__ Link Here
402
      server. e.g. Antarctica/South_Pole -->
402
      server. e.g. Antarctica/South_Pole -->
403
 <timezone>__TIMEZONE__</timezone>
403
 <timezone>__TIMEZONE__</timezone>
404
404
405
 <!-- This is the salt used to generated anonymized content -->
406
 <key>__KEY__</key>
407
405
 <!-- flag for development purposes
408
 <!-- flag for development purposes
406
      dev_install is used to adjust some paths specific to dev installations
409
      dev_install is used to adjust some paths specific to dev installations
407
      strict_sql_modes should not be used in a production environment
410
      strict_sql_modes should not be used in a production environment
(-)a/etc/koha-conf.xml (-1 / +3 lines)
Lines 226-231 __PAZPAR2_TOGGLE_XML_POST__ Link Here
226
      server. e.g. Antarctica/South_Pole -->
226
      server. e.g. Antarctica/South_Pole -->
227
 <timezone></timezone>
227
 <timezone></timezone>
228
228
229
 <!-- This is the salt used to generated anonymized content -->
230
 <key>__KEY__</key>
231
229
 <!-- flag for development purposes
232
 <!-- flag for development purposes
230
      dev_install is used to adjust some paths specific to dev installations
233
      dev_install is used to adjust some paths specific to dev installations
231
      strict_sql_modes should not be used in a production environment
234
      strict_sql_modes should not be used in a production environment
232
- 

Return to bug 24151