--- yuminstall.py | 25 +++++++++++++++++-------- 1 files changed, 17 insertions(+), 8 deletions(-) diff --git a/yuminstall.py b/yuminstall.py index 858fe0a..05a3b69 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -589,6 +589,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. @@ -596,15 +608,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.0.1 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list