reset _RUN_CFDISK

This commit is contained in:
Tobias Powalowski 2023-06-24 08:33:50 +02:00
parent 35ddef412e
commit 3b46d49145

View file

@ -14,6 +14,7 @@ _check_gpt() {
_clean_disk "${_DISK}" _clean_disk "${_DISK}"
# create fresh GPT # create fresh GPT
sgdisk --clear "${_DISK}" &>"${_NO_LOG}" sgdisk --clear "${_DISK}" &>"${_NO_LOG}"
_RUN_CFDISK=1
_GUID_DETECTED=1 _GUID_DETECTED=1
fi fi
fi fi
@ -29,6 +30,7 @@ _check_gpt() {
_dialog --msgbox "$(cat /usr/lib/archboot/installer/help/guid-partition.txt)" 0 0 _dialog --msgbox "$(cat /usr/lib/archboot/installer/help/guid-partition.txt)" 0 0
clear clear
cfdisk "${_DISK}" cfdisk "${_DISK}"
_RUN_CFDISK=""
# reread partitiontable for kernel # reread partitiontable for kernel
partprobe "${_DISK}" partprobe "${_DISK}"
fi fi