search for: dbc9d968c

Displaying 2 results from an estimated 2 matches for "dbc9d968c".

2018 Nov 30
0
[PATCH 3/3] lib: inspect: tweak limits of package manager files
...ger than 400M - reduce the other files down to 50M: they are usually small, not bigger than 1M-5M, so 50M is a good enough high threshold --- lib/inspect-apps.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/inspect-apps.c b/lib/inspect-apps.c index 3441b4b94..dbc9d968c 100644 --- a/lib/inspect-apps.c +++ b/lib/inspect-apps.c @@ -50,15 +50,15 @@ /* Maximum RPM 'Packages' file we will download to /tmp. This file * can get very large: 70 MB is roughly the standard size for a new * Fedora install, and after lots of package installation/removal - * I hav...
2018 Nov 30
4
[PATCH 0/3] inspection: tweak limits of package manager files
I got a recent report of virt-v2v (via virt-p2v) failing to migrate a Fedora guest. The issue was that its /var/lib/rpm/Packages was bigger than our current limit (~410M vs 300M), hence the inspection failed. I took the liberty to refactor the limits of the these files, bumping the problematic one, and reducing the ones of the others (as they are supposed to be way smaller than the limit). Pino