summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2006-08-01 20:57:52 +0000
committerPeter Jones <pjones@redhat.com>2006-08-01 20:57:52 +0000
commit8d725d1ed297816aaf7354a153b948a5572e6360 (patch)
tree7840d5a9ecf57878201263e0da8d913170935220
parent3f427cd98fb6c9fbc609f2da47cb01b54211b9e8 (diff)
downloadanaconda-8d725d1ed297816aaf7354a153b948a5572e6360.tar.gz
anaconda-8d725d1ed297816aaf7354a153b948a5572e6360.tar.xz
anaconda-8d725d1ed297816aaf7354a153b948a5572e6360.zip
- fix accidental skippedList additions
-rw-r--r--ChangeLog3
-rw-r--r--partedUtils.py3
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d1082d52f..611d2e5be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@
* dmraid.py (DmDriveCache.remove): Fix key name generation
+ * partedUtils.py (DiskSet.startMdRaid): fix test list so that
+ we don't accidentally append to the DiskSet.skippedList
+
2006-08-01 David Cantrell <dcantrell@redhat.com>
* loader2/urls.c (addrToIp): Correctly handle IP addresses passed as
diff --git a/partedUtils.py b/partedUtils.py
index 2604650e7..340e0b106 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -628,7 +628,8 @@ class DiskSet:
def startMdRaid(self):
"""Start all of the md raid devices associated with the DiskSet."""
- testList = DiskSet.skippedDisks
+ testList = []
+ testList.extend(DiskSet.skippedDisks)
if not rhpl.getArch() in ('s390','s390x'):
for mp in DiskSet.mpList or []: