1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

Stop the capture daemon during ehdd shutdown to avoid "busy" mount

This commit is contained in:
downtownallday 2021-09-14 08:17:21 -04:00
parent 402207714b
commit 3f2b2ef146
2 changed files with 10 additions and 1 deletions

View File

@ -9,6 +9,15 @@ if [ -s /etc/mailinabox.conf ]; then
#systemctl stop nsd
[ -x /usr/sbin/slapd ] && systemctl stop slapd
systemctl stop fail2ban
systemctl stop miabldap-capture
fi
ehdd/umount.sh
code=$?
if [ $code -eq 2 ]; then
echo "Trying again in 10 seconds..."
sleep 10
ehdd/umount.sh
code=$?
fi
exit $code

View File

@ -6,6 +6,6 @@ if ! mount | grep "$EHDD_MOUNTPOINT" >/dev/null; then
# not mounted
exit 0
fi
umount "$EHDD_MOUNTPOINT" || exit 1
umount "$EHDD_MOUNTPOINT" || exit 2
cryptsetup luksClose $EHDD_LUKS_NAME
losetup -d $(find_inuse_loop)