From 8f11627450618a1050949556098300fd284cb480 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sat, 14 Jan 2023 14:15:40 +0100 Subject: [PATCH] rename activate_raid to _activate_md --- usr/lib/archboot/installer/blockdevices.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/installer/blockdevices.sh b/usr/lib/archboot/installer/blockdevices.sh index 4b0de17f1..1188cff6d 100644 --- a/usr/lib/archboot/installer/blockdevices.sh +++ b/usr/lib/archboot/installer/blockdevices.sh @@ -209,7 +209,7 @@ _activate_lvm2() fi } -_activate_raid() +_activate_md() { _RAID_READY="" if [[ -e /usr/bin/mdadm ]]; then @@ -250,7 +250,7 @@ _activate_special_devices() _LUKS_READY="" _LVM2_READY="" while [[ -n "${_LVM2_READY}" && -n "${_RAID_READY}" && -n "${_LUKS_READY}" ]]; do - _activate_raid + _activate_md _activate_lvm2 _activate_luks done