From a67c51c505ede947018ede3ced383964fe142186 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 17 Feb 2025 09:15:59 +0000 Subject: [PATCH] Bug 36954: (QA follow-up) Add a dbrev print message about sip.log Content-Type: text/plain; charset=utf-8 With reference to BZ comment9 and comment10. Signed-off-by: Marcel de Rooy --- installer/data/mysql/atomicupdate/bug_36954.pl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_36954.pl diff --git a/installer/data/mysql/atomicupdate/bug_36954.pl b/installer/data/mysql/atomicupdate/bug_36954.pl new file mode 100755 index 0000000000..d04eb98743 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_36954.pl @@ -0,0 +1,14 @@ +use Modern::Perl; +use Koha::Installer::Output qw(say_warning say_success say_info); + +return { + bug_number => "36954", + description => "Adjustment for logfiles in koha-sip", + up => sub { + my ($args) = @_; + my ( $dbh, $out ) = @$args{qw(dbh out)}; + + say_warning( $out, "IMPORTANT: If you use SIP, please edit your /etc/koha/sites/[CLONE]/log4perl.conf at upgrade time." ); + say_warning( $out, "Replace sip.log there by sip-output.log." ); + }, +}; -- 2.39.5