make clear message info
authorGui Chen <gui.chen@intel.com>
Mon, 21 Jan 2013 16:55:36 +0000 (00:55 +0800)
committerGui Chen <gui.chen@intel.com>
Mon, 21 Jan 2013 17:38:02 +0000 (01:38 +0800)
Change-Id: I5717d5d92b604b544ad3ddec7a3eb2eebb9d461b
Signed-off-by: Gui Chen <gui.chen@intel.com>
plugins/backend/yumpkgmgr.py
plugins/backend/zypppkgmgr.py

index 8f85f9d..1fbf1b2 100644 (file)
@@ -372,7 +372,7 @@ class Yum(BackendPlugin, yum.YumBase):
         cached_count = 0
         download_total_size = sum(map(lambda x: int(x.packagesize), dlpkgs))
 
-        msger.info("\nChecking packages cache and packages integrity ...")
+        msger.info("\nChecking packages cached ...")
         for po in dlpkgs:
             local = po.localPkg()
             repo = filter(lambda r: r.id == po.repoid, self.repos.listEnabled())[0]
@@ -404,9 +404,7 @@ class Yum(BackendPlugin, yum.YumBase):
             raise CreatorError("No enough space used for installing, "
                                "please resize partition size in ks file")
 
-        msger.info("%d packages to be installed, "
-                   "%d packages gotten from cache, "
-                   "%d packages to be downloaded" \
+        msger.info("Packages: %d Total, %d Cached, %d Missed" \
                    % (total_count, cached_count, total_count - cached_count))
 
         try:
index a1f76b4..41ce2ec 100755 (executable)
@@ -480,7 +480,7 @@ class Zypp(BackendPlugin):
         download_total_size = sum(map(lambda x: int(x.downloadSize()), dlpkgs))
         localpkgs = self.localpkgs.keys()
 
-        msger.info("Checking packages cache and packages integrity ...")
+        msger.info("Checking packages cached ...")
         for po in dlpkgs:
             # Check if it is cached locally
             if po.name() in localpkgs:
@@ -515,9 +515,7 @@ class Zypp(BackendPlugin):
         #                       "please resize partition size in ks file")
 
         download_count =  total_count - cached_count
-        msger.info("%d packages to be installed, "
-                   "%d packages gotten from cache, "
-                   "%d packages to be downloaded" \
+        msger.info("Packages: %d Total, %d Cached, %d Missed" \
                    % (total_count, cached_count, download_count))
 
         try: