X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Finstallation_check.pl;h=94751b96125ace80d0a1bf83c14fa2eca22764b4;hb=a6ce2c7f3f7ae10f7065fb86121c8d11049617ee;hp=8557f9e9bf3999c6d86b6a0dffb4d5522028cf0e;hpb=cff913a1c984f82558a7d59dec0b8b1a06c5530d;p=kivitendo-erp.git diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 8557f9e9b..94751b961 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -90,6 +90,7 @@ if (!SL::LxOfficeConf->read(undef, 'may fail')) { if ($check{r}) { print_header('Checking Required Modules'); check_module($_, required => 1) for @SL::InstallationCheck::required_modules; + check_pdfinfo(); } if ($check{o}) { print_header('Checking Optional Modules'); @@ -201,6 +202,33 @@ sub kpsewhich { EOL } } +sub check_pdfinfo { + my $line = "Looking for pdfinfo executable"; + 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' ) { + print_line($line, $ver_string, 'green'); + } else { + print_line($line, 'not installed','red'); + my %modinfo = ( name => 'pdfinfo' ); + push @missing_modules, \%modinfo; + + } +} + +sub check_pdfinfo { + my $line = "Looking for pdfinfo executable"; + 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' ) { + print_line($line, $ver_string, 'green'); + } else { + print_line($line, 'not installed','red'); + my %modinfo = ( name => 'pdfinfo' ); + push @missing_modules, \%modinfo; + + } +} sub check_aqbanking { my $aqbin = $::lx_office_conf{applications}->{aqbanking};