Bugzilla – Attachment 71087 Details for
Bug 12932
Web installer's Perl version check will not raise errors if all modules are installed
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 12932: When all modules installed, Perl version check ignored
Bug-12932-When-all-modules-installed-Perl-version-.patch (text/plain), 2.49 KB, created by
Owen Leonard
on 2018-01-31 13:30:03 UTC
(
hide
)
Description:
Bug 12932: When all modules installed, Perl version check ignored
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2018-01-31 13:30:03 UTC
Size:
2.49 KB
patch
obsolete
>From e36509549980c503bbc5f0f6fad56f0b46b31476 Mon Sep 17 00:00:00 2001 >From: Mark Tompsett <mtompset@hotmail.com> >Date: Tue, 30 Jan 2018 18:22:42 +0000 >Subject: [PATCH] Bug 12932: When all modules installed, Perl version check > ignored > >The description in comment #0 is quite true, because the >scope of the $checkmodule variable is local to just the >module checking. If we change the scope, we can include the >perl check as part of the new scope, and thus properly set >its value. > >As Debian Jessie, Stretch and Ubuntu Xenial all have good >versions of Perl by default, the easiest way to test this >is to: >- make sure to have some optional modules not installed. >- change the system preference 'Version' to one just under > the current version in your SQL client. >- modify the version check line to 5.030000 >- restart_all and try going to the staff client. > -- This should not inform you that your perl version is bad. >- git reset hard back to origin/master >- apply the patch >- modify the version check line to 5.030000 >- change the system preference 'Version' to one just under > the current version in your SQL client. >- restart_all and try going to the staff client. > -- This should trigger the patch, and you should > be informed your perl version is bad. >- git reset hard back to origin/master >- apply the patch >- run koha qa test tools > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > installer/install.pl | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/installer/install.pl b/installer/install.pl >index bf0b9d1..a7aaa28 100755 >--- a/installer/install.pl >+++ b/installer/install.pl >@@ -89,11 +89,13 @@ if ( $step && $step == 1 ) { > #Whenever there is an error, adding a report to the page > my $op = $query->param('op') || 'noop'; > $template->param( language => 1 ); >+ my $checkmodule = 1; > $template->param( 'checkmodule' => 1 ) > ; # we start with the assumption that there are no problems and set this to 0 if there are > > unless ( $] >= 5.010000 ) { # Bug 7375 > $template->param( problems => 1, perlversion => 1, checkmodule => 0 ); >+ $checkmodule = 0; > } > > my $perl_modules = C4::Installer::PerlModules->new; >@@ -102,7 +104,6 @@ if ( $step && $step == 1 ) { > my $modules = $perl_modules->get_attr('missing_pm'); > if ( scalar(@$modules) ) { > my @components = (); >- my $checkmodule = 1; > foreach (@$modules) { > my ( $module, $stats ) = each %$_; > $checkmodule = 0 if $stats->{'required'}; >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 12932
:
71072
|
71073
|
71087
|
71175