2023-05-28 16:35:45 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import subprocess
|
|
|
|
import shutil
|
|
|
|
import os
|
|
|
|
import glob
|
|
|
|
import datetime
|
|
|
|
|
|
|
|
def main():
|
|
|
|
source_path = sys.argv[1]
|
|
|
|
print(f"source path: {source_path}")
|
|
|
|
|
|
|
|
backup_to_usb_destination_path = sys.argv[2]
|
|
|
|
print(f"backup to usb destination path: {backup_to_usb_destination_path}")
|
|
|
|
|
|
|
|
if not os.path.isdir(backup_to_usb_destination_path):
|
|
|
|
print(f"Directory {backup_to_usb_destination_path} does not exist")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
machine_id = subprocess.run(["sha256sum", "/etc/machine-id"], capture_output=True, text=True).stdout.strip()[:64]
|
|
|
|
print(f"machine id: {machine_id}")
|
|
|
|
|
2023-11-16 17:07:28 +01:00
|
|
|
versions_path = os.path.join(backup_to_usb_destination_path, f"{machine_id}/backup-data-to-usb/")
|
2023-05-28 16:35:45 +02:00
|
|
|
print(f"versions path: {versions_path}")
|
|
|
|
|
|
|
|
if not os.path.isdir(versions_path):
|
|
|
|
print(f"Creating {versions_path}...")
|
|
|
|
os.makedirs(versions_path, exist_ok=True)
|
|
|
|
|
|
|
|
previous_version_path = max(glob.glob(f"{versions_path}*"), key=os.path.getmtime, default=None)
|
|
|
|
print(f"previous versions path: {previous_version_path}")
|
|
|
|
|
|
|
|
current_version_path = os.path.join(versions_path, datetime.datetime.now().strftime("%Y%m%d%H%M%S"))
|
|
|
|
print(f"current versions path: {current_version_path}")
|
|
|
|
|
|
|
|
print("Creating backup destination folder...")
|
|
|
|
os.makedirs(current_version_path, exist_ok=True)
|
|
|
|
|
|
|
|
print("Starting synchronization...")
|
|
|
|
try:
|
|
|
|
rsync_command = [
|
2023-06-20 09:52:10 +02:00
|
|
|
"rsync", "-abP", "--delete", "--delete-excluded"
|
2023-05-28 16:35:45 +02:00
|
|
|
]
|
2023-06-20 09:52:10 +02:00
|
|
|
if previous_version_path is not None:
|
|
|
|
rsync_command.append("--link-dest=" + previous_version_path)
|
|
|
|
rsync_command.extend([source_path, current_version_path])
|
2023-05-28 16:35:45 +02:00
|
|
|
rsync_output = subprocess.check_output(rsync_command, stderr=subprocess.STDOUT, text=True)
|
|
|
|
|
2023-05-29 01:12:35 +02:00
|
|
|
print(rsync_output)
|
|
|
|
print("Synchronization finished")
|
|
|
|
sys.exit(0)
|
|
|
|
except subprocess.CalledProcessError as e:
|
|
|
|
print(e.output)
|
|
|
|
if "rsync warning: some files vanished before they could be transferred" in e.output:
|
2023-05-28 16:35:45 +02:00
|
|
|
print("Synchronization finished with rsync warning")
|
|
|
|
sys.exit(0)
|
|
|
|
else:
|
2023-05-29 01:12:35 +02:00
|
|
|
print("Synchronization failed")
|
|
|
|
sys.exit(1)
|
2023-05-28 16:35:45 +02:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|