mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
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.
This commit is contained in:
parent
a4bc0bb1f2
commit
36bdb836ae
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user