Skip to content

Commit

Permalink
Remove redundant block for adding fwraid member disks.
Browse files Browse the repository at this point in the history
This can be handled from the normal addUdevDiskDevice path.
  • Loading branch information
dwlehman committed Mar 17, 2015
1 parent cffc34c commit 25d876d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions blivet/populator.py
Expand Up @@ -751,13 +751,6 @@ def addUdevDevice(self, info):
elif udev.device_is_cdrom(info):
log.info("%s is a cdrom", name)
device = self.addUdevOpticalDevice(info)
elif udev.device_is_biosraid_member(info) and udev.device_is_disk(info):
log.info("%s is part of a biosraid", name)
device = DiskDevice(name,
major=udev.device_get_major(info),
minor=udev.device_get_minor(info),
sysfsPath=sysfs_path, exists=True)
self.devicetree._addDevice(device)
elif udev.device_is_disk(info):
device = self.addUdevDiskDevice(info)
elif udev.device_is_partition(info):
Expand Down

0 comments on commit 25d876d

Please sign in to comment.