Skip to content

Commit 24111f0

Browse files
authored
[OCPBUGS-48299] this change shall fix it
When trying to follow the procedure as per Red Hat documentation, the below command is failing: $ mdadm -CR /dev/md/dummy -l0 -n2 /dev/imsm0 -z10M --assume-clean mdadm: You haven't given enough devices (real or missing) to create this array As it seems that the path to the imsm0 device is wrong, and command should be: $ mdadm -CR /dev/md/dummy -l0 -n2 /dev/md/imsm0 -z10M --assume-clean need to correct our relevant documentation. Also, it would be good to verify if there is a need to update the procedure.
1 parent 197d2e2 commit 24111f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/installation-special-config-raid-intel-vroc.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $ mdadm -CR /dev/md/imsm0 -e \
3131
+
3232
[source,terminal]
3333
----
34-
$ mdadm -CR /dev/md/dummy -l0 -n2 /dev/imsm0 -z10M --assume-clean
34+
$ mdadm -CR /dev/md/dummy -l0 -n2 /dev/md/imsm0 -z10M --assume-clean
3535
----
3636

3737
.. Create the real RAID1 array by running the following command:

0 commit comments

Comments
 (0)