1
0
Fork 0
mdadm/clustermd_tests/01r1_Grow_resize
Daniel Baumann 4fd4995b67
Adding upstream version 4.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-14 05:52:19 +01:00

23 lines
403 B
Bash

#!/bin/bash
size=10000
mdadm -CR $md0 -l1 -b clustered --size $size -n2 $dev0 $dev1 --assume-clean
ssh $NODE2 mdadm -A $md0 $dev0 $dev1
check all nosync
check all raid1
check all bitmap
check all state UU
mdadm --grow $md0 --size max
check $NODE1 resync
check $NODE1 wait
check all state UU
mdadm --grow $md0 --size $size
check all nosync
check all state UU
check all dmesg
stop_md all $md0
exit 0