From 381f98417d8d7880b33dc498e354843a722717d1 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Wed, 7 Jan 2009 09:56:31 -0500 Subject: 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 --- rescue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rescue.py') 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: -- cgit