From 7643e9fd2ac191cf91f494028a03c7d046422c3a Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Mon, 10 Jul 2017 12:44:14 +0100 Subject: [PATCH] Bug 18920 Save DB_USE_TLS and FONT_DIR to install log Configuration values should be included in the koha-install-log so that when running Makefile.PL with the --prev-install-log option values can be read from there and reapplied rather than prompting the user on each subsequent run. This adds FONT_DIR and DB_USE_TLS (and its dependent options) to koha-install-log so that the set values will be written by make during a make install or make upgrade --- misc/koha-install-log | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/misc/koha-install-log b/misc/koha-install-log index 17dd0da..7f5cd9c 100644 --- a/misc/koha-install-log +++ b/misc/koha-install-log @@ -11,6 +11,10 @@ DB_HOST=__DB_HOST__ DB_PORT=__DB_PORT__ DB_USER=__DB_USER__ DB_PASS=__DB_PASS__ +DB_USE_TLS=__DB_USE_TLS__ +DB_TLS_CA_CERTIFICATE=__DB_TLS_CA_CERTIFICATE__ +DB_TLS_CLIENT_CERTIFICATE=__DB_TLS_CLIENT_CERTIFICATE__ +DB_TLS_CLIENT_KEY=__DB_TLS_CLIENT_KEY__ WEBMASTER_EMAIL=__WEBMASTER_EMAIL__ WEBSERVER_DOMAIN=__WEBSERVER_DOMAIN__ WEBSERVER_HOST=__WEBSERVER_HOST__ @@ -64,3 +68,4 @@ PATH_TO_ZEBRA=__PATH_TO_ZEBRA__ USE_MEMCACHED=__USE_MEMCACHED__ MEMCACHED_SERVERS=__MEMCACHED_SERVERS__ MEMCACHED_NAMESPACE=__MEMCACHED_NAMESPACE__ +FONT_DIR=__FONT_DIR__ -- 2.9.4