Skip to content

Commit

Permalink
Merge pull request #5943 from vojtechtrefny/fedora-41_biosraid-clear-fix
Browse files Browse the repository at this point in the history
Fix checking whether a disk can be cleared during autopart
  • Loading branch information
KKoukiou authored Oct 17, 2024
2 parents d966ba2 + a29d100 commit f63b69a
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 f63b69a

Please sign in to comment.