1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-12 17:07:23 +01:00

Merge branch 'jammyjellyfish2204' of https://github.com/mail-in-a-box/mailinabox into jammyjellyfish2204

# Conflicts:
#	management/backup.py
This commit is contained in:
downtownallday
2022-09-29 11:10:16 -04:00
6 changed files with 45 additions and 20 deletions

View File

@@ -309,6 +309,7 @@ def perform_backup(full_backup):
service_command("dovecot", "stop", quit=True)
service_command("slapd", "stop", quit=True)
service_command("miabldap-capture", "stop", quit=True)
service_command("postgrey", "stop", quit=True)
# Execute a pre-backup script that copies files outside the homedir.
# Run as the STORAGE_USER user, not as root. Pass our settings in
@@ -340,6 +341,7 @@ def perform_backup(full_backup):
# Start services again.
service_command("miabldap-capture", "start", quit=False)
service_command("slapd", "start", quit=False)
service_command("postgrey", "start", quit=False)
service_command("dovecot", "start", quit=False)
service_command("postfix", "start", quit=False)
service_command("php8.0-fpm", "start", quit=False)