add: ignore install failures on 'apk add --force'

and use this option in initramfs, so we are likely to get an usable
environment even if some packages from world are missing. fixes #50.
cute-signatures
Timo Teras 2009-07-07 10:03:30 +03:00
parent 812a6a3167
commit 1531192cb9
1 changed files with 2 additions and 1 deletions

View File

@ -145,7 +145,8 @@ static int add_main(void *ctx, int argc, char **argv)
r = apk_state_lock_dependency(state, &pkgs->item[i]);
if (r != 0) {
apk_error("Unable to install '%s'", pkgs->item[i].name->name);
goto err;
if (!(apk_flags & APK_FORCE))
goto err;
}
if (!virtpkg)
apk_deps_add(&db.world, &pkgs->item[i]);