-echo 'Checking place table ... ';
-if ($oDB->tableExists('place')) {
- $print_success();
-} else {
- $print_fail();
- echo <<< END
- * The import didn't finish.
- Hints:
- * Check the output of the utils/setup.php you ran.
- Usually the osm2pgsql step failed. Check for errors related to
- * the file you imported not containing any places
- * harddrive full
- * out of memory (RAM)
- * osm2pgsql killed by other scripts, for consuming to much memory
-
-END;
- exit(1);
+if (!isNoUpdateInstallation()) {
+ echo 'Checking place table ... ';
+ if ($oDB->tableExists('place')) {
+ $print_success();
+ } else {
+ $print_fail();
+ echo <<< END
+ * The import didn't finish.
+ Hints:
+ * Check the output of the utils/setup.php you ran.
+ Usually the osm2pgsql step failed. Check for errors related to
+ * the file you imported not containing any places
+ * harddrive full
+ * out of memory (RAM)
+ * osm2pgsql killed by other scripts, for consuming to much memory
+
+ END;
+ exit(1);
+ }