From 5034082b5c5f090ce69cc8c3b454b06008a3329d Mon Sep 17 00:00:00 2001 From: Andreas Roussos Date: Thu, 27 Sep 2018 14:36:47 +0300 Subject: [PATCH] Bug 21426: setting USE_MEMCACHED to "no" in koha-sites.conf does not have any effect Setting USE_MEMCACHED to "no" in /etc/koha/koha-sites.conf does not have any effect, because as of Bug 18342 memcached is enabled by default for new installations. With the proposed patch this potential source of confusion is removed from the configuration file. Test plan: 1) view koha-sites.conf and notice that you are given the option to set USE_MEMCACHED to either "yes" or "no" (the default being "yes") 2) apply the patch 3) this time the "Memcached global configuration variables" section should point out that new instances will use memcached by default --- debian/templates/koha-sites.conf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/debian/templates/koha-sites.conf b/debian/templates/koha-sites.conf index 8cbd6c1e20..aa77f7539a 100644 --- a/debian/templates/koha-sites.conf +++ b/debian/templates/koha-sites.conf @@ -34,9 +34,7 @@ ZEBRA_LANGUAGE="en" ## Memcached global configuration variables # -# USE_MEMCACHED: 'yes' | 'no' -# Make the created instance use memcached. Can be altered later. -# default: 'yes' +# New instances will use memcached by default. This can be altered later. USE_MEMCACHED="yes" # MEMCACHED_SERVERS: comma separated list of memcached servers (ip:port) -- 2.11.0