fix: Wait for device symlink after partitioning (#56)
Co-authored-by: Min Xu <min.xu.public@gmail.com>
This commit is contained in:
parent
d46010ba7b
commit
3888a552fa
|
@ -239,6 +239,16 @@ function disk_create_partition() {
|
|||
sgdisk -n "0:0:$arg_size" -t "0:$type" -u "0:$partuuid" $extra_args "$device" >/dev/null \
|
||||
|| die "Could not create new gpt partition ($new_id) on '$device' ($id)"
|
||||
partprobe "$device"
|
||||
|
||||
# On some system, we need to wait a bit for the $new_id symlink to show up.
|
||||
local new_device
|
||||
new_device="$(resolve_device_by_id "$new_id")" \
|
||||
|| die "Could not resolve new device with id=$new_id"
|
||||
for i in {1..10}; do
|
||||
[[ -f "$new_device" ]] && break
|
||||
echo "Waiting for partition $new_device to appear, $i second..."
|
||||
sleep 1
|
||||
done
|
||||
}
|
||||
|
||||
function disk_create_raid() {
|
||||
|
|
Loading…
Reference in New Issue