X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/6aaed579a01d95b634a06d6a0b4bf11ac61363b6..6ba38ffedd99c9d3ade9134b01ac510c50d92d2e:/scripts/installation_check.pl diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 8557f9e9b..2535a2c37 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'); @@ -202,6 +203,20 @@ 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_aqbanking { my $aqbin = $::lx_office_conf{applications}->{aqbanking}; if ( !$aqbin ) {