> diff --git a/storage/partitioning.py b/storage/partitioning.py > index 33210ec..b645933 100644 > --- a/storage/partitioning.py > +++ b/storage/partitioning.py > @@ -305,6 +305,10 @@ def shouldClear(device, clearPartType, clearPartDisks=None): > not device.getFlag(parted.PARTITION_SWAP): > return False > elif device.isDisk and not device.partitioned: > + # If we got a list of disks to clear, make sure this one's on it > + if clearPartDisks and device.name not in clearPartDisks: > + return False > + > if clearPartType == CLEARPART_TYPE_LINUX and \ > not device.format.linuxNative: > return False Looks fine. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list