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

(-)a/debian/scripts/koha-create (+3 lines)
Lines 108-113 generate_config_file() { Link Here
108
        -e "s/__UNIXGROUP__/$username/g" \
108
        -e "s/__UNIXGROUP__/$username/g" \
109
        -e "s#__TEMPLATE_CACHE_DIR__#$TEMPLATE_CACHE_DIR#g" \
109
        -e "s#__TEMPLATE_CACHE_DIR__#$TEMPLATE_CACHE_DIR#g" \
110
        -e "s#__TIMEZONE__#$TIMEZONE#g" \
110
        -e "s#__TIMEZONE__#$TIMEZONE#g" \
111
        -e "s#__KEY__#$KEY#g" \
111
        -e "s#__UPLOAD_PATH__#$UPLOAD_PATH#g" \
112
        -e "s#__UPLOAD_PATH__#$UPLOAD_PATH#g" \
112
        -e "s#__TMP_PATH__#$TMP_PATH#g" \
113
        -e "s#__TMP_PATH__#$TMP_PATH#g" \
113
        -e "s/__LOG_DIR__/\/var\/log\/koha\/$name/g" \
114
        -e "s/__LOG_DIR__/\/var\/log\/koha\/$name/g" \
Lines 483-488 if [ "$CLO_TIMEZONE" != "" ]; then Link Here
483
    TIMEZONE=$CLO_TIMEZONE
484
    TIMEZONE=$CLO_TIMEZONE
484
fi
485
fi
485
486
487
KEY=$(htpasswd -bnBC 10 "" password | tr -d ':\n' | sed 's/$2y/$2a/');
488
486
if [ "$ENABLE_SRU" != "no" ]; then
489
if [ "$ENABLE_SRU" != "no" ]; then
487
    enable_sru_server
490
    enable_sru_server
488
fi
491
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