[yum-git] yum/__init__.py

Jack Neely slack at linux.duke.edu
Tue Jun 3 20:32:02 UTC 2008


 yum/__init__.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7cbcad7c9bf22464cbaa15c4b92f50eac9784ceb
Author: Jack Neely <jjneely at ncsu.edu>
Date:   Tue Jun 3 16:17:53 2008 -0400

    The postresolve hook should run after the installonlyn magic.

diff --git a/yum/__init__.py b/yum/__init__.py
index 1be6237..35b44d4 100644
--- a/yum/__init__.py
+++ b/yum/__init__.py
@@ -626,8 +626,8 @@ class YumBase(depsolve.Depsolve):
         ds_st = time.time()
 
         (rescode, restring) = self.resolveDeps()
-        self.plugins.run('postresolve', rescode=rescode, restring=restring)
         self._limit_installonly_pkgs()
+        self.plugins.run('postresolve', rescode=rescode, restring=restring)
         
         if self.tsInfo.changed:
             (rescode, restring) = self.resolveDeps()



More information about the Yum-cvs-commits mailing list