summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/autopart.py b/autopart.py
index 3916258a9..fda41912a 100644
--- a/autopart.py
+++ b/autopart.py
@@ -1398,13 +1398,15 @@ def doAutoPartition(anaconda):
len(partitions.autoClearPartDrives) == 0):
valid = 1
else:
- for d in r.drive:
- if d in partitions.autoClearPartDrives:
- valid = 1
- break
-
- if not r.multidrive:
- valid = 0
+ if not isinstance(r, partRequests.RaidRequestSpec):
+ for d in r.drive:
+ if d in partitions.autoClearPartDrives:
+ valid = 1
+ break
+
+ if not isinstance(r, partRequests.RaidRequestSpec):
+ if not r.multidrive:
+ valid = 0
if valid:
req.physicalVolumes.append(r.uniqueID)