From: Alexander Kanavin Date: Wed, 20 Sep 2017 12:51:00 +0000 (+0300) Subject: meta/lib/oe/rootfs.py: clean up dnf cache after creating an image X-Git-Tag: 2017-10~121 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=89ddf2516b713e6622df95ab391423b033d4271a;p=openembedded-core.git meta/lib/oe/rootfs.py: clean up dnf cache after creating an image It contains cached metadata for a transient repository that is used only when creating images on the host, and so is of no use on target images. Dnf will recreate the cache on target when needed. Signed-off-by: Alexander Kanavin Signed-off-by: Ross Burton --- diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 9d4727e76c..71bd1a78dc 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py @@ -525,7 +525,8 @@ class RpmRootfs(Rootfs): self.pm.save_rpmpostinst(pkg) def _cleanup(self): - pass + self.pm._invoke_dnf(["clean", "all"]) + class DpkgOpkgRootfs(Rootfs): def __init__(self, d, progress_reporter=None, logcatcher=None):