mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
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.
41 lines
1.0 KiB
Bash
Executable File
41 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
#####
|
|
##### This file is part of Mail-in-a-Box-LDAP which is released under the
|
|
##### terms of the GNU Affero General Public License as published by the
|
|
##### Free Software Foundation, either version 3 of the License, or (at
|
|
##### your option) any later version. See file LICENSE or go to
|
|
##### https://github.com/downtownallday/mailinabox-ldap for full license
|
|
##### details.
|
|
#####
|
|
|
|
if [ -s /etc/mailinabox.conf ]; then
|
|
systemctl stop mailinabox
|
|
systemctl stop nginx
|
|
systemctl stop php8.0-fpm
|
|
systemctl stop postfix
|
|
systemctl stop dovecot
|
|
systemctl stop postgrey
|
|
systemctl stop cron
|
|
#systemctl stop nsd
|
|
[ -x /usr/sbin/slapd ] && systemctl stop slapd
|
|
systemctl stop fail2ban
|
|
systemctl stop miabldap-capture
|
|
fi
|
|
|
|
if [ "$1" != "--no-umount" ]; then
|
|
ehdd/umount.sh
|
|
code=$?
|
|
tries=1
|
|
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
|
|
else
|
|
code=0
|
|
fi
|
|
|
|
exit $code
|