rename activate_raid to _activate_md

This commit is contained in:
Tobias Powalowski 2023-01-14 14:15:40 +01:00
parent a82be3a665
commit 8f11627450

View file

@ -209,7 +209,7 @@ _activate_lvm2()
fi fi
} }
_activate_raid() _activate_md()
{ {
_RAID_READY="" _RAID_READY=""
if [[ -e /usr/bin/mdadm ]]; then if [[ -e /usr/bin/mdadm ]]; then
@ -250,7 +250,7 @@ _activate_special_devices()
_LUKS_READY="" _LUKS_READY=""
_LVM2_READY="" _LVM2_READY=""
while [[ -n "${_LVM2_READY}" && -n "${_RAID_READY}" && -n "${_LUKS_READY}" ]]; do while [[ -n "${_LVM2_READY}" && -n "${_RAID_READY}" && -n "${_LUKS_READY}" ]]; do
_activate_raid _activate_md
_activate_lvm2 _activate_lvm2
_activate_luks _activate_luks
done done