auto-update index only when database is opened for writing
parent
d0a25d670a
commit
5f7dcadc69
|
@ -156,6 +156,7 @@ struct apk_database {
|
||||||
unsigned int pending_triggers;
|
unsigned int pending_triggers;
|
||||||
int performing_self_upgrade : 1;
|
int performing_self_upgrade : 1;
|
||||||
int permanent : 1;
|
int permanent : 1;
|
||||||
|
int open_write : 1;
|
||||||
int open_complete : 1;
|
int open_complete : 1;
|
||||||
int compat_newfeatures : 1;
|
int compat_newfeatures : 1;
|
||||||
int compat_notinstallable : 1;
|
int compat_notinstallable : 1;
|
||||||
|
|
|
@ -1517,6 +1517,7 @@ int apk_db_open(struct apk_database *db, struct apk_db_options *dbopts)
|
||||||
r = -1;
|
r = -1;
|
||||||
goto ret_r;
|
goto ret_r;
|
||||||
}
|
}
|
||||||
|
if (dbopts->open_flags & APK_OPENF_WRITE) db->open_write = 1;
|
||||||
if (!dbopts->cache_dir) dbopts->cache_dir = "etc/apk/cache";
|
if (!dbopts->cache_dir) dbopts->cache_dir = "etc/apk/cache";
|
||||||
|
|
||||||
apk_db_setup_repositories(db, dbopts->cache_dir);
|
apk_db_setup_repositories(db, dbopts->cache_dir);
|
||||||
|
@ -2263,7 +2264,7 @@ int apk_db_add_repository(apk_database_t _db, apk_blob_t _repository)
|
||||||
r = apk_repo_format_real_url(db, repo, NULL, buf, sizeof(buf));
|
r = apk_repo_format_real_url(db, repo, NULL, buf, sizeof(buf));
|
||||||
if (r == 0) apk_message("fetch %s", buf);
|
if (r == 0) apk_message("fetch %s", buf);
|
||||||
} else {
|
} else {
|
||||||
apk_repository_update(db, repo);
|
if (db->open_write) apk_repository_update(db, repo);
|
||||||
r = apk_repo_format_cache_index(APK_BLOB_BUF(buf), repo);
|
r = apk_repo_format_cache_index(APK_BLOB_BUF(buf), repo);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue