[gnome-continuous-yocto/gnomeostree-3.28-rocko: 30/218] package_manager: force dnf to refresh the cache



commit dd6ba2aa9674fe37e71d42add60f445a41f92653
Author: Ross Burton <ross burton intel com>
Date:   Mon Nov 27 17:14:50 2017 +0000

    package_manager: force dnf to refresh the cache
    
    DNF has a time-based cache policy (and a great sense of humour) so it's possible
    that 'dnf makecache' won't actually refresh any caches.  Force the cache updates
    by passing --refresh.
    
    (From OE-Core rev: b3b0b2e7e710195245f58b4757059906d0cf284e)
    
    Signed-off-by: Ross Burton <ross burton intel com>
    (cherry picked from commit a6e34b6aa194a27db9667af1fb0195ac8fb563f5)
    Signed-off-by: Armin Kuster <akuster808 gmail com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 meta/lib/oe/package_manager.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 6cbb61f..ef69b18 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -692,7 +692,7 @@ class RpmPM(PackageManager):
         return packages
 
     def update(self):
-        self._invoke_dnf(["makecache"])
+        self._invoke_dnf(["makecache", "--refresh"])
 
     def _invoke_dnf(self, dnf_args, fatal = True, print_output = True ):
         os.environ['RPM_ETCCONFIGDIR'] = self.target_rootfs


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]