Skip to content

Commit

Permalink
Fix checking whether a disk can be cleared during autopart
Browse files Browse the repository at this point in the history
One more issue related to the device ID change. This does not
happen with "normal" disks because we use name as device ID for
them so this is triggered on a system with a BIOS RAID array.

Resolves: rhbz#2317287
  • Loading branch information
vojtechtrefny committed Oct 16, 2024
1 parent fea233c commit a3d56af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def can_remove(self, storage, device):
for disk in device.disks:
# this will not include disks with hidden formats like multipath
# and firmware raid member disks
if self.drives_to_clear and disk.name not in self.drives_to_clear:
if self.drives_to_clear and disk.device_id not in self.drives_to_clear:
return False

if not self.clear_non_existent:
Expand Down Expand Up @@ -113,7 +113,7 @@ def can_remove(self, storage, device):
return False

if self.initialization_mode == CLEAR_PARTITIONS_LIST and \
device.name not in self.devices_to_clear:
device.device_id not in self.devices_to_clear:
return False

return True
Expand Down

0 comments on commit a3d56af

Please sign in to comment.