]> git.openstreetmap.org Git - nominatim.git/blobdiff - utils/setup.php
adapt test results to new ranking
[nominatim.git] / utils / setup.php
index db17b8f51290fcc9ad747d7e1b76c3bfc152e7e6..23b7b3a623c6a17d54b9835eff9d2c3057438e81 100644 (file)
@@ -77,16 +77,11 @@ if ($aCMDResult['create-db'] || $aCMDResult['all']) {
     $oSetup->createDB();
 }
 
-$oSetup->connect();
-
 if ($aCMDResult['setup-db'] || $aCMDResult['all']) {
     $bDidSomething = true;
     $oSetup->setupDB();
 }
 
-// Try accessing the C module, so we know early if something is wrong
-checkModulePresence(); // raises exception on failure
-
 if ($aCMDResult['import-data'] || $aCMDResult['all']) {
     $bDidSomething = true;
     $oSetup->importData($aCMDResult['osm-file']);