mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-22 20:51:07 +01:00
Optimized local backup code
This commit is contained in:
parent
9736d651c6
commit
3215e9fd65
@ -46,14 +46,16 @@ def main():
|
|||||||
]
|
]
|
||||||
rsync_output = subprocess.check_output(rsync_command, stderr=subprocess.STDOUT, text=True)
|
rsync_output = subprocess.check_output(rsync_command, stderr=subprocess.STDOUT, text=True)
|
||||||
|
|
||||||
if "rsync warning: some files vanished before they could be transferred" in rsync_output:
|
print(rsync_output)
|
||||||
print("Synchronization finished with rsync warning")
|
|
||||||
sys.exit(0)
|
|
||||||
else:
|
|
||||||
print("Synchronization finished")
|
print("Synchronization finished")
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
print("Synchronization failed:", e.output)
|
print(e.output)
|
||||||
|
if "rsync warning: some files vanished before they could be transferred" in e.output:
|
||||||
|
print("Synchronization finished with rsync warning")
|
||||||
|
sys.exit(0)
|
||||||
|
else:
|
||||||
|
print("Synchronization failed")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Backup to USB when mounted to {{ backup_to_usb_mount }}
|
Description=Backup to USB when mounted to {{ backup_to_usb_mount }}
|
||||||
Wants={{systemctl_mount_service_name}}
|
Wants={{systemctl_mount_service_name}}
|
||||||
After={{systemctl_mount_service_name}}
|
|
||||||
OnFailure=systemd-notifier@%n.service
|
OnFailure=systemd-notifier@%n.service
|
||||||
Requires=backups-cleanup.service
|
|
||||||
After=backups-cleanup.service
|
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStart=/bin/python {{ backup_to_usb_script_path }} {{backup_to_usb_source}} {{backup_to_usb_destination}}
|
ExecStart=/bin/python {{ backup_to_usb_script_path }} {{backup_to_usb_source}} {{backup_to_usb_destination}}
|
||||||
|
ExecStartPost=/bin/systemctl start backups-cleanup.service
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
Loading…
Reference in New Issue
Block a user