summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-01-07 09:56:31 -0500
committerChris Lumens <clumens@redhat.com>2009-01-07 09:57:24 -0500
commit381f98417d8d7880b33dc498e354843a722717d1 (patch)
tree858ddb0ea98711d50e292a5f0ef882a472f7b2e0 /rescue.py
parent3430f3062daa8c5b85c51030e628c9627b2e30ac (diff)
downloadanaconda-381f98417d8d7880b33dc498e354843a722717d1.tar.gz
anaconda-381f98417d8d7880b33dc498e354843a722717d1.tar.xz
anaconda-381f98417d8d7880b33dc498e354843a722717d1.zip
Update partedUtils.py:findExistingRootPartitions to return UUID (atodorov).
The attached patch updates findExistingRootPartitions to return dev, fs, release string, label and uuid and fixes all callers to use the 5 tuple. This is required so that later changes to upgrades functionality can fit better in the code. For more background see: https://www.redhat.com/archives/anaconda-devel-list/2008-December/msg00210.html
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue.py b/rescue.py
index 67d573b1c..2ae35e64d 100644
--- a/rescue.py
+++ b/rescue.py
@@ -265,7 +265,7 @@ def runRescue(anaconda, instClass):
scroll = 0
partList = []
- for (drive, fs, relstr, label) in disks:
+ for (drive, fs, relstr, label, uuid) in disks:
if label:
partList.append("%s (%s)" % (drive, label))
else: