remove some check_for_erroring around exit for now

merge-requests/273/head
Bernhard Landauer 8 years ago
parent fab5729f5f
commit 5af8ada8c1

@ -4,10 +4,10 @@ umount_partitions() {
MOUNTED=$(mount | grep "${MOUNTPOINT}" | awk '{print $3}' | sort -r)
swapoff -a
for i in ${MOUNTED[@]}; do
local err=$(umount $i >/dev/null 2>$ERR)
(( err !=0 )) && check_for_error "$FUNCNAME $i" $err
done
# for i in ${MOUNTED[@]}; do
# local err=$(umount $i >/dev/null 2>$ERR)
# (( err !=0 )) && check_for_error "$FUNCNAME $i" $err
# done
}
# This function does not assume that the formatted device is the Root installation device as

@ -47,7 +47,7 @@ main_menu_online() {
*) final_check
dialog --backtitle "$VERSION - $SYSTEM ($ARCHI)" --yesno "$_CloseInstBody $(cat ${CHECKLIST})" 0 0
if [[ $? -eq 0 ]]; then
check_for_error "exit installer." $? "SKIP"
echo "exit installer." >> ${LOGFILE}
if [[ -e /mnt/usr ]]; then
dialog --backtitle "$VERSION - $SYSTEM ($ARCHI)" --yesno "\n$_LogInfo\n" 0 0
if [[ $? -eq 0 ]]; then

Loading…
Cancel
Save