@@ -, +, @@ modulePath created by an older Koha version. modulePath: directive rather than the old one. --- debian/koha-common.postinst | 7 +++++++ 1 file changed, 7 insertions(+) --- a/debian/koha-common.postinst +++ a/debian/koha-common.postinst @@ -131,6 +131,13 @@ EOF fi fi +# Bug 14106 - fix the modulePath of existing koha instances so that it'll +# continue to work. This will only patch the files if the exact original string +# that we're fixing them from is there, so we just run it every time. Maybe +# in many years time we can get rid of this, when no one will be running +# Koha < 3.20. +perl -p -i -e 's{^modulePath: /usr/lib/idzebra-2.0/modules$}{modulePath: /usr/lib/idzebra-2.0/modules:/usr/lib/x86_64-linux-gnu/idzebra-2.0/modules:/usr/lib/i386-linux-gnu/idzebra-2.0/modules:/usr/lib/aarch64-linux-gnu/idzebra-2.0/modules:/usr/lib/arm-linux-gnueabi/idzebra-2.0/modules:/usr/lib/arm-linux-gnueabihf/idzebra-2.0/modules:/usr/lib/mips-linux-gnu/idzebra-2.0/modules:/usr/lib/mipsel-linux-gnu/idzebra-2.0/modules:/usr/lib/powerpc-linux-gnu/idzebra-2.0/modules:/usr/lib/powerpc64le-linux-gnu/idzebra-2.0/modules:/usr/lib/s390x-linux-gnu/idzebra-2.0/modules}' $( find /etc/koha/sites -name zebra-authorities.cfg -or -name zebra-authorities-dom.cfg -or -name zebra-biblios.cfg -or -name zebra-biblios-dom.cfg ) + db_stop exit 0 --