mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-05 00:27:25 +00:00
24 lines
502 B
Bash
Executable File
24 lines
502 B
Bash
Executable File
#!/bin/bash
|
|
if [ -s /etc/mailinabox.conf ]; then
|
|
systemctl stop mailinabox
|
|
systemctl stop nginx
|
|
systemctl stop php7.2-fpm
|
|
systemctl stop postfix
|
|
systemctl stop dovecot
|
|
systemctl stop cron
|
|
#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
|