Stop using --update=super-minor when starting md arrays.
It is only supported for the decreasingly common v0 metadata,
plus it's probably better not to rename people's arrays based on
the order in which we find their member partitions.
---
pyanaconda/storage/devicelibs/mdraid.py | 9 +--------
pyanaconda/storage/devices.py | 5 -----
2 files changed, 1 insertions(+), 13 deletions(-)
diff --git a/pyanaconda/storage/devicelibs/mdraid.py b/pyanaconda/storage/devicelibs/mdraid.py
index 08f58d1..d310ea4 100644
--- a/pyanaconda/storage/devicelibs/mdraid.py
+++ b/pyanaconda/storage/devicelibs/mdraid.py
@@ -167,8 +167,7 @@ def mdadd(device):
except MDRaidError as msg:
raise MDRaidError("mdadd failed for %s: %s" % (device, msg))
-def mdactivate(device, members=[], super_minor=None, update_super_minor=False,
- uuid=None):
+def mdactivate(device, members=[], super_minor=None, uuid=None):
if super_minor is None and not uuid:
raise ValueError("mdactivate requires either a uuid or a super-minor")