diff options
author | Max Rees <maxcrees@me.com> | 2019-08-10 02:08:10 -0500 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2020-12-29 21:29:17 -0500 |
commit | 306246f43371a70da3c39e80b40fec515357a174 (patch) | |
tree | 504102ae0bdc8a3947e11cdd5f83da35bd41675e /src/database.c | |
parent | 3890035c21e40aca7d5360bfc40e4b7ab9f10c50 (diff) | |
download | apk-tools-for-alpine/cache-errors.tar.gz apk-tools-for-alpine/cache-errors.tar.bz2 apk-tools-for-alpine/cache-errors.tar.xz apk-tools-for-alpine/cache-errors.zip |
cache: report errors when unlinkingfor-alpine/cache-errors
Before:
$ abuild-apk del mutt
(1/3) Purging mutt (1.12.1-r0)
(2/3) Purging gdbm (1.18.1-r0)
(3/3) Purging libidn (1.35-r0)
OK: 3752 MiB in 805 packages
$ apk cache sync --purge || echo nope, sorry
$ ls /home/apk-cache/*gdbm*
/home/apk-cache/gdbm-1.18.1-r0.b0b17e93.apk
After:
$ apk cache sync --purge || echo nope, sorry
ERROR: Unable to delete gdbm-1.18.1-r0.b0b17e93.apk: Permission denied
nope, sorry
Diffstat (limited to 'src/database.c')
-rw-r--r-- | src/database.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/database.c b/src/database.c index bbf072e..80f9d1b 100644 --- a/src/database.c +++ b/src/database.c @@ -1393,12 +1393,13 @@ static char *find_mountpoint(int atfd, const char *rel_path) return ret; } -static void mark_in_cache(struct apk_database *db, int dirfd, const char *name, struct apk_package *pkg) +static int mark_in_cache(struct apk_database *db, int dirfd, const char *name, struct apk_package *pkg) { if (pkg == NULL) - return; + return 0; pkg->repos |= BIT(APK_REPOSITORY_CACHED); + return 0; } static int add_repos_from_file(void *ctx, int dirfd, const char *file) @@ -2048,9 +2049,7 @@ static int foreach_cache_file(void *pctx, int dirfd, const char *name) } } no_pkg: - ctx->cb(db, dirfd, name, pkg); - - return 0; + return ctx->cb(db, dirfd, name, pkg); } int apk_db_cache_foreach_item(struct apk_database *db, apk_cache_item_cb cb) |