diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-06-16 01:03:03 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-06-16 01:03:03 +0000 |
commit | 558a24f1a9af41d03614aa265307611e81073e74 (patch) | |
tree | 8b8eb994c3930cb9c4a29b6d375bf46391e22eda /partedUtils.py | |
parent | fe03a751a60ed7f543342c69222da55abb53961a (diff) | |
download | anaconda-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.py | 2 |
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,)) |