From 3b658a8a6c1eda222692289129d26222cd747821 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 15 May 2020 10:12:46 +0200 Subject: [PATCH] Bug 25510: Fix syntax error in koha-common.postinst Signed-off-by: David Cook Signed-off-by: Tomas Cohen Arazi --- debian/koha-common.postinst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/koha-common.postinst b/debian/koha-common.postinst index 46bc087d2b9..f14b0315261 100644 --- a/debian/koha-common.postinst +++ b/debian/koha-common.postinst @@ -136,7 +136,7 @@ log4perl_component() local config=$1 local component=$2 - if [ grep -q -x "log4perl.logger.$component" $config ]; then + if grep -q -x "log4perl.logger.$component" $config; then return 0 else return 1 @@ -146,7 +146,7 @@ log4perl_component() # Take care of the instance's log4perl.conf file for site in $(koha-list); do log4perl_config="/etc/koha/sites/$site/log4perl.conf" - if [ !log4perl_component $log4perl_config "z3950" ]; then + if !log4perl_component $log4perl_config "z3950"; then cat <> $log4perl_config log4perl.logger.z3950 = WARN, Z3950 log4perl.appender.Z3950=Log::Log4perl::Appender::File @@ -159,7 +159,7 @@ log4perl.appender.Z3950.utf8=1 EOF fi - if [ !log4perl_component $log4perl_config "api" ]; then + if !log4perl_component $log4perl_config "api"; then cat <> $log4perl_config log4perl.logger.api = WARN, API log4perl.appender.API=Log::Log4perl::Appender::File @@ -175,7 +175,7 @@ done for site in $(koha-list); do log4perl_config="/etc/koha/sites/$site/log4perl.conf" - if [ !log4perl_component $log4perl_config "sip" ]; then + if !log4perl_component $log4perl_config "sip"; then cat <> $log4perl_config log4perl.logger.sip = DEBUG, SIP log4perl.appender.SIP=Log::Log4perl::Appender::File -- 2.26.2