diff options
author | Chris Lumens <clumens@redhat.com> | 2006-01-09 19:45:36 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-01-09 19:45:36 +0000 |
commit | 60e013f9d2078af321ba0796a40d4e90c649bbc7 (patch) | |
tree | e1f76ecbed15943c1ce38e828c91366ddf765c02 | |
parent | 543df5c49e8a169bd6e2b884fa7b8b501f15823b (diff) | |
download | anaconda-60e013f9d2078af321ba0796a40d4e90c649bbc7.tar.gz anaconda-60e013f9d2078af321ba0796a40d4e90c649bbc7.tar.xz anaconda-60e013f9d2078af321ba0796a40d4e90c649bbc7.zip |
Always write out a device name for RAID devices.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | partitions.py | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2006-01-09 Chris Lumens <clumens@redhat.com> + + * partitions.py (Partitions.writeKS): Always write out a device + name for RAID devices. + 2006-01-09 David Cantrell <dcantrell@redhat.com> * gui.py (ExceptionWindow): Tweak display of the exception diff --git a/partitions.py b/partitions.py index 6f65ba312..b21a22d4a 100644 --- a/partitions.py +++ b/partitions.py @@ -1113,6 +1113,7 @@ class Partitions: args.append("--badblocks") args.append("--level=%s" % (request.raidlevel)) + args.append("--device=md%s" % (request.raidminor)) if request.raidspares: args.append("--spares=%s" % (request.raidspares)) |