Bug 18920: Save DB_USE_TLS and FONT_DIR to install log
authorColin Campbell <colin.campbell@ptfs-europe.com>
Mon, 10 Jul 2017 11:44:14 +0000 (12:44 +0100)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 27 Oct 2017 19:07:15 +0000 (16:07 -0300)
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

Signed-off-by: Mark Tompsett <mtompset@hotmail.com>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

misc/koha-install-log

index 17dd0da..7f5cd9c 100644 (file)
@@ -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__