From 51ba8d8774141a7dba1b61c3c628e33f7e5ae1d2 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sat, 29 Oct 2022 19:34:15 -0400 Subject: [PATCH] Try to determine what is causing umount to fail by using lsof --- ehdd/shutdown.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ehdd/shutdown.sh b/ehdd/shutdown.sh index 45356577..ec6b764c 100755 --- a/ehdd/shutdown.sh +++ b/ehdd/shutdown.sh @@ -33,6 +33,9 @@ if [ "$1" != "--no-umount" ]; then code=$? let tries+=1 done + if [ $code -eq 2 ]; then + echo "Giving up! (lsof: $(/usr/bin/lsof | grep "$STORAGE_ROOT"))" + fi else code=0 fi