X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=scripts%2Finstallation_check.pl;h=48d78eaf5cce9f2172cb635c4d6f4f56857adea1;hb=8bd48e18d5d0096bc9b1ef13c7a84934c0d6cf6d;hp=2535a2c37001b3d7b8fd2acebc90097ab5a80835;hpb=6ba38ffedd99c9d3ade9134b01ac510c50d92d2e;p=kivitendo-erp.git diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 2535a2c37..48d78eaf5 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" }, @@ -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; }