@@ -, +, @@ --- debian/scripts/koha-create | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- a/debian/scripts/koha-create +++ a/debian/scripts/koha-create @@ -506,7 +506,14 @@ NO_DB die; fi -set_memcached $name +echo $USE_MEMCACHED +if [ "$USE_MEMCACHED" = "no" ]; then + MEMCACHED_SERVERS="" + MEMCACHED_NAMESPACE="" + MEMCACHED_PREFIX="" +else + set_memcached $name +fi # Set template cache dir if [ "$CLO_TEMPLATE_CACHE_DIR" != "" ]; then --