From 36bdb836aee731b3dcc3e83ac29e972de90ab579 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Thu, 10 Nov 2022 14:56:46 -0500 Subject: [PATCH] qa: give shutdown more time to unmount the encrypted drive lsof reveals that nextcloud's cron job (owncloud/cron.php), if running when shutdown.sh is called, holds the owncloud.db sqlite database open and prevents the umount from succeeding. This change will give it more time to complete. --- ehdd/shutdown.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ehdd/shutdown.sh b/ehdd/shutdown.sh index ec6b764c..5d693016 100755 --- a/ehdd/shutdown.sh +++ b/ehdd/shutdown.sh @@ -26,16 +26,13 @@ if [ "$1" != "--no-umount" ]; then ehdd/umount.sh code=$? tries=1 - while [ $code -eq 2 -a $tries -le 3 ]; do + while [ $code -eq 2 -a $tries -le 9 ]; do echo "Trying again in 10 seconds..." sleep 10 ehdd/umount.sh 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