From 558a24f1a9af41d03614aa265307611e81073e74 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Fri, 16 Jun 2006 01:03:03 +0000 Subject: 2006-06-15 Jeremy Katz * partedUtils.py (DiskSet.startDmRaid): No dmraid on s390 --- partedUtils.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'partedUtils.py') 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,)) -- cgit