X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Finstallation_check.pl;h=fa608383924e1a3541c3276f8126b10841682a1b;hb=50f1c0c8a1ff5944e07bf90f6adea641531a51e2;hp=2535a2c37001b3d7b8fd2acebc90097ab5a80835;hpb=5a9adcc5f18c0e487ccba4d7c30cd022e7de4ecc;p=kivitendo-erp.git diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 2535a2c37..fa6083839 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -6,7 +6,6 @@ BEGIN { unshift(@INC, $FindBin::Bin . '/../modules/override'); # Use our own versions of various modules (e.g. YAML). push (@INC, $FindBin::Bin . '/..'); # '.' will be removed from @INC soon. - push (@INC, $FindBin::Bin . '/../modules/fallback'); # Only use our own versions of modules if there's no system version. # this is a default dir. may be wrong in your installation, change it then $master_templates = $FindBin::Bin . '/../templates/print/'; @@ -58,7 +57,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 +178,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; @@ -208,10 +207,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; }