X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Finstallation_check.pl;h=140ecddc036e932664feb587165fc595630deda0;hb=d19171d1dec83cdf8b5256223495efde4d0dda8c;hp=df2ac3face808c0295a973f316ba883867581efb;hpb=5011c474a13a569438c7cbcf13ec20190be3b6fc;p=kivitendo-erp.git diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index df2ac3fac..140ecddc0 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -58,7 +58,7 @@ GetOptions( ); my %install_methods = ( - apt => { key => 'debian', install => 'sudo apt-get install', system => "Debian, Ubuntu" }, + apt => { key => 'debian', install => 'sudo apt install', system => "Debian, Ubuntu" }, yum => { key => 'fedora', install => 'sudo yum install', system => "RHEL, Fedora, CentOS" }, zypper => { key => 'suse', install => 'sudo zypper install', system => "SLES, openSUSE" }, cpan => { key => 'name', install => "sudo cpan", system => "CPAN" }, @@ -179,10 +179,10 @@ sub kpsewhich { $package =~ s/[^-_0-9A-Za-z]//g; my $type_desc = $type eq 'cls' ? 'document class' : 'package'; - eval { use String::ShellQuote; 1 } or warn "can't load String::ShellQuote" && return; - $dw = shell_quote $dw; - my $e_package = shell_quote $package; - my $e_type = shell_quote $type; + eval { require String::ShellQuote; 1 } or warn "can't load String::ShellQuote" && return; + $dw = String::ShellQuote::shell_quote $dw; + my $e_package = String::ShellQuote::shell_quote $package; + my $e_type = String::ShellQuote::shell_quote $type; my $exit = system(qq|TEXINPUTS=".:$dw:" kpsewhich $e_package.$e_type > /dev/null|); my $res = $exit > 0 ? 0 : 1; @@ -212,7 +212,7 @@ sub check_pdfinfo { print_line($line, $ver_string, 'green'); } else { print_line($line, 'not installed','red'); - my %modinfo = ( name => 'pdfinfo' ); + my %modinfo = ( debian => 'poppler-utils' ); push @missing_modules, \%modinfo; }