diff options
author | David Cantrell <dcantrell@redhat.com> | 2006-01-30 22:11:59 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2006-01-30 22:11:59 +0000 |
commit | c70fb5d426a0838cf62c2df35b3ddf71250497db (patch) | |
tree | d86cd77e541747e3444c0187dbde5e0aaa10c2b5 | |
parent | 66bb73196cc8a5f39b144f3691f6fd48c9349f09 (diff) | |
download | anaconda-c70fb5d426a0838cf62c2df35b3ddf71250497db.tar.gz anaconda-c70fb5d426a0838cf62c2df35b3ddf71250497db.tar.xz anaconda-c70fb5d426a0838cf62c2df35b3ddf71250497db.zip |
Just kidding! Hahaha!
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | dmraid.py | 4 |
2 files changed, 0 insertions, 8 deletions
@@ -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 <dcantrell@redhat.com> * textw/partition_text.py (PartitionTypeWindow): Skip partition @@ -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 |