[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 4/5] Add mdadm_no_degraded
- From: Jacek Danecki <Jacek Danecki intel com>
- To: Discussion of Development and Customization of the Red Hat Linux Installer <anaconda-devel-list redhat com>
- Subject: [PATCH 4/5] Add mdadm_no_degraded
- Date: Tue, 9 Jun 2009 14:04:13 +0200
This patch adds new function used by activating md array for isw format.
Subject: [PATCH 4/5] Add mdadm_no_degraded
---
storage/devicelibs/mdraid.py | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/storage/devicelibs/mdraid.py b/storage/devicelibs/mdraid.py
index 56fd626..74ce740 100644
--- a/storage/devicelibs/mdraid.py
+++ b/storage/devicelibs/mdraid.py
@@ -153,6 +153,20 @@ def mdadd(device):
rc = iutil.execWithRedirect("mdadm",
["--incremental",
"--quiet",
+ device],
+ stderr = "/dev/tty5",
+ stdout = "/dev/tty5",
+ searchPath=1)
+
+ if rc:
+ raise MDRaidError("mdadd failed for %s" % device)
+
+def mdadd_no_degraded(device):
+ ### FIXME: this should be merged with mdadd function
+ rc = iutil.execWithRedirect("mdadm",
+ ["--incremental",
+ "--auto=md",
+ "--no-degraded",
device],
stderr = "/dev/tty5",
stdout = "/dev/tty5",
--
1.6.3.1.54.g99dd
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]