From d4f2d93264965ace4a40809d3eaa6fa0f35bad3c Mon Sep 17 00:00:00 2001 From: MacRimi Date: Fri, 11 Apr 2025 19:29:56 +0200 Subject: [PATCH] Update mount-disk-on-host.sh --- scripts/storage/mount-disk-on-host.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/storage/mount-disk-on-host.sh b/scripts/storage/mount-disk-on-host.sh index e6e897a..2d0a986 100644 --- a/scripts/storage/mount-disk-on-host.sh +++ b/scripts/storage/mount-disk-on-host.sh @@ -335,7 +335,11 @@ if [ $? -eq 0 ]; then chmod 775 "$MOUNT_POINT" whiptail --title "$(translate "Success")" --msgbox "$(translate "The disk has been successfully mounted at") $MOUNT_POINT" 8 60 msg_ok "$(translate "Disk mounted at") $MOUNT_POINT" + msg_success "$(translate "Press Enter to return to menu...")" + read -r else whiptail --title "$(translate "Mount Error")" --msgbox "$(translate "Failed to mount the disk at") $MOUNT_POINT" 8 60 + msg_success "$(translate "Press Enter to return to menu...")" + read -r exit 1 fi