From c70fb5d426a0838cf62c2df35b3ddf71250497db Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Mon, 30 Jan 2006 22:11:59 +0000 Subject: Just kidding! Hahaha! --- ChangeLog | 4 ---- dmraid.py | 4 ---- 2 files changed, 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index deb47c95b..fec07a063 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24,10 +24,6 @@ * packages.py (writeXConfiguration): Do not create /etc/X11/X symlink (#179321). - * dmraid.py (scanForRaid.nonDegraded): If found_devs is less than - total_devs, return False and let it filter the drive from the list - of found dmraid things. - 2006-01-27 David Cantrell * textw/partition_text.py (PartitionTypeWindow): Skip partition diff --git a/dmraid.py b/dmraid.py index d892acd2c..bf0fe3f12 100644 --- a/dmraid.py +++ b/dmraid.py @@ -106,10 +106,6 @@ def scanForRaid(drives, degradedOk=False): log.debug("got raidset %s (%s)" % (rs, string.join(rs.member_devpaths))) log.debug(" valid: %s found_devs: %s total_devs: %s" % (rs.valid, rs.rs.found_devs, rs.rs.total_devs)) - if rs.rs.found_devs < rs.rs.total_devs: - log.debug(" found_devs less than total_devs, weird") - return False - if not rs.valid and not degradedOk: log.warning("raid %s (%s) is degraded" % (rs, rs.name)) #raise DegradedRaidWarning, rs -- cgit