From a4f494c11cde689e0d7d4032ee118d058bbffa7f Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 12 Apr 2022 20:01:49 +0200 Subject: [PATCH] add umountall message at the end of action --- usr/lib/archboot/installer/blockdevices.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/blockdevices.sh b/usr/lib/archboot/installer/blockdevices.sh index 1eea2341b..ad5bfbe6c 100644 --- a/usr/lib/archboot/installer/blockdevices.sh +++ b/usr/lib/archboot/installer/blockdevices.sh @@ -396,11 +396,12 @@ _getavailpartitions() # the destination root partition last! _umountall() { - DIALOG --infobox "Disabling swapspace, unmounting already mounted disk devices..." 0 0 swapoff -a >/dev/null 2>&1 for i in $(findmnt --list --submounts "${DESTDIR}" -o TARGET -n | tac); do umount "$i" done + DIALOG --infobox "Disabled swapspace, unmounted already mounted disk devices in ${DESTDIR} ...\n\nContinuing in 3 seconds..." 5 60 + sleep 3 } # Disable all software raid devices