[PATCH 1/6 master] Add a method that fetches and returns the .treeinfo file.

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

 



From: Chris Lumens <clumens@xxxxxxxxxx>

Related: rhbz#580697
---
 pyanaconda/yuminstall.py |   25 +++++++++++++++++--------
 1 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/pyanaconda/yuminstall.py b/pyanaconda/yuminstall.py
index 6c0ddda..4420d9f 100644
--- a/pyanaconda/yuminstall.py
+++ b/pyanaconda/yuminstall.py
@@ -661,6 +661,18 @@ class AnacondaYum(YumSorter):
 
         return repo
 
+    def _getTreeinfo(self):
+        if os.access("%s/.treeinfo" % self.anaconda.methodstr, os.R_OK):
+            return "%s/.treeinfo" % self.anaconda.methodstr
+        else:
+            try:
+                ug = URLGrabber()
+                ug.urlgrab("%s/.treeinfo" % self.anaconda.methodstr,
+                           "/tmp/.treeinfo", copy_local=1)
+                return "/tmp/.treeinfo"
+            except:
+                return None
+
     # We need to make sure $releasever gets set up before .repo files are
     # read.  Since there's no redhat-release package in /mnt/sysimage (and
     # won't be for quite a while), we need to do our own substutition.
@@ -668,15 +680,12 @@ class AnacondaYum(YumSorter):
         from ConfigParser import ConfigParser
         c = ConfigParser()
 
-        try:
-            if os.access("%s/.treeinfo" % self.anaconda.methodstr, os.R_OK):
-                ConfigParser.read(c, "%s/.treeinfo" % self.anaconda.methodstr)
-            else:
-                ug = URLGrabber()
-                ug.urlgrab("%s/.treeinfo" % self.anaconda.methodstr,
-                           "/tmp/.treeinfo", copy_local=1)
-                ConfigParser.read(c, "/tmp/.treeinfo")
+        treeinfo = self._getTreeinfo()
+        if not treeinfo:
+            return productVersion
 
+        ConfigParser.read(c, treeinfo)
+        try:
             return c.get("general", "version")
         except:
             return productVersion
-- 
1.7.2.3

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list


[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux