summaryrefslogtreecommitdiffstats
path: root/partedUtils.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-06-16 01:03:03 +0000
committerJeremy Katz <katzj@redhat.com>2006-06-16 01:03:03 +0000
commit558a24f1a9af41d03614aa265307611e81073e74 (patch)
tree8b8eb994c3930cb9c4a29b6d375bf46391e22eda /partedUtils.py
parentfe03a751a60ed7f543342c69222da55abb53961a (diff)
downloadanaconda-558a24f1a9af41d03614aa265307611e81073e74.tar.gz
anaconda-558a24f1a9af41d03614aa265307611e81073e74.tar.xz
anaconda-558a24f1a9af41d03614aa265307611e81073e74.zip
2006-06-15 Jeremy Katz <katzj@redhat.com>
* partedUtils.py (DiskSet.startDmRaid): No dmraid on s390
Diffstat (limited to 'partedUtils.py')
-rw-r--r--partedUtils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/partedUtils.py b/partedUtils.py
index 7dc88f90b..87532fcd8 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -558,6 +558,8 @@ class DiskSet:
def startDmRaid(self):
"""Start all of the dmraid devices associated with the DiskSet."""
+ if rhpl.getArch() in ('s390', 's390x'):
+ return
log.debug("self.driveList(): %s" % (self.driveList(),))
log.debug("DiskSet.skippedDisks: %s" % (DiskSet.skippedDisks,))