summaryrefslogtreecommitdiff
path: root/src/app_cache.c
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2022-12-28 14:42:23 +0200
committerTimo Teräs <timo.teras@iki.fi>2022-12-28 14:59:32 +0200
commit40f6720a3ffd448bd338412cf975befc71461abd (patch)
treec92a833ffbced3e683fab1a8acc1e28d7c915c6f /src/app_cache.c
parent22cc01645d93b6cf97e8d154f04c7ce3c5d74597 (diff)
downloadapk-tools-40f6720a3ffd448bd338412cf975befc71461abd.tar.gz
apk-tools-40f6720a3ffd448bd338412cf975befc71461abd.tar.bz2
apk-tools-40f6720a3ffd448bd338412cf975befc71461abd.tar.xz
apk-tools-40f6720a3ffd448bd338412cf975befc71461abd.zip
cache, upgrade: do not continue if repositories have issues
There are subtle issues where solving fails with --available, and install_if rules if the repository indexes are not available. Also it can be considered upgrade failure if index update failed. Abort cache download, cache sync and upgrade operations early in the above mentioned cases. Also document side effects of --simulate that might affect upgrade. fixes #10726, #10764
Diffstat (limited to 'src/app_cache.c')
-rw-r--r--src/app_cache.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/app_cache.c b/src/app_cache.c
index 3a68938..09d9adf 100644
--- a/src/app_cache.c
+++ b/src/app_cache.c
@@ -198,11 +198,19 @@ static int cache_main(void *ctx, struct apk_database *db, struct apk_string_arra
return -EINVAL;
if (!apk_db_cache_active(db)) {
- apk_error("Package cache is not enabled.\n");
+ apk_error("Package cache is not enabled.");
r = 2;
goto err;
}
+ if ((actions & CACHE_DOWNLOAD) && (cctx->solver_flags || cctx->add_dependencies)) {
+ if (db->repositories.stale || db->repositories.unavailable) {
+ apk_error("Not continuing due to stale/unavailable repositories.");
+ r = 3;
+ goto err;
+ }
+ }
+
if (r == 0 && (actions & CACHE_CLEAN))
r = cache_clean(db);
if (r == 0 && (actions & CACHE_DOWNLOAD))