X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Finstallation_check.pl;h=6f92bba69766fc79ec43ed711bee4fc25de5009b;hb=11f548d3ce947debde9e1c2e175af11b9ba4dc98;hp=2535a2c37001b3d7b8fd2acebc90097ab5a80835;hpb=5a9adcc5f18c0e487ccba4d7c30cd022e7de4ecc;p=kivitendo-erp.git diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 2535a2c37..6f92bba69 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,7 +179,7 @@ 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; + eval { require 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; @@ -208,10 +208,11 @@ sub check_pdfinfo { my $shell_out = `pdfinfo -v 2>&1 | grep version 2> /dev/null`; my ($label,$vers,$ver_string) = split / /,$shell_out; if ( $label && $label eq 'pdfinfo' ) { + chop $ver_string; 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; }