installation_check prüft jetzt auch auf Versionen.
[kivitendo-erp.git] / scripts / installation_check.pl
index c7a7cdc..6eca871 100755 (executable)
@@ -10,7 +10,11 @@ use SL::InstallationCheck;
 $| = 1;
 
 foreach my $module (@SL::InstallationCheck::required_modules) {
-  print("Looking for $module->{name}...");
+  if ($module->{version}) {
+    print("Looking for $module->{name} $module->{version}...");
+  } else {
+    print("Looking for $module->{name}...");
+  }
   if (!SL::InstallationCheck::module_available($module->{"name"})) {
     print(" NOT found\n" .
           "  The module '$module->{name}' is not available on your system.\n" .