mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2026-03-12 17:07:23 +01:00
new backup script, see #11
This commit is contained in:
54
management/backup.py
Executable file
54
management/backup.py
Executable file
@@ -0,0 +1,54 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
# This script performs a backup of all user data:
|
||||
# 1) System services are stopped while a copy of user data is made.
|
||||
# 2) An incremental backup is made using rdiff-backup into the
|
||||
# directory STORAGE_ROOT/backup/rdiff-history. This directory
|
||||
# will contain the latest files plus a complete history for
|
||||
# all prior backups.
|
||||
# 3) The stopped services are restarted.
|
||||
# 4) The backup directory is compressed into a single file using tar.
|
||||
# 5) That file is encrypted with a long password stored in backup/secret_key.txt.
|
||||
|
||||
import os, os.path, subprocess
|
||||
|
||||
from utils import exclusive_process, load_environment
|
||||
|
||||
env = load_environment()
|
||||
|
||||
exclusive_process("backup")
|
||||
|
||||
# Ensure the backup directory exists.
|
||||
backup_dir = os.path.join(env["STORAGE_ROOT"], 'backup')
|
||||
rdiff_backup_dir = os.path.join(backup_dir, 'rdiff-history')
|
||||
os.makedirs(backup_dir, exist_ok=True)
|
||||
|
||||
# Stop services.
|
||||
subprocess.check_call(["service", "dovecot", "stop"])
|
||||
subprocess.check_call(["service", "postfix", "stop"])
|
||||
|
||||
# Update the backup directory which stores increments.
|
||||
try:
|
||||
subprocess.check_call([
|
||||
"rdiff-backup",
|
||||
"--exclude", backup_dir,
|
||||
env["STORAGE_ROOT"],
|
||||
rdiff_backup_dir])
|
||||
except subprocess.CalledProcessError:
|
||||
pass
|
||||
|
||||
# Start services.
|
||||
subprocess.check_call(["service", "dovecot", "start"])
|
||||
subprocess.check_call(["service", "postfix", "start"])
|
||||
|
||||
# Tar the rdiff-backup directory into a single file encrypted using the backup private key.
|
||||
os.system(
|
||||
"tar -zcC %s . | openssl enc -aes-256-cbc -a -salt -in /dev/stdin -out %s -pass file:%s"
|
||||
%
|
||||
( rdiff_backup_dir,
|
||||
os.path.join(backup_dir, "latest.tgz.enc"),
|
||||
os.path.join(backup_dir, "secret_key.txt"),
|
||||
))
|
||||
|
||||
# The backup can be decrypted with:
|
||||
# openssl enc -d -aes-256-cbc -a -in latest.tgz.enc -out /dev/stdout -pass file:secret_key.txt | tar -z
|
||||
Reference in New Issue
Block a user