Implement systemd timers #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add a systemd
.timer
unit(man page, ArchLinux Wiki) unit for periodic backups as an alternative to the
cron
job. (The user still needs a Cronjob if he runs a systemd-free distribution or even a different OS like FreeBSD.)We have much more options for when and how the backup job should run, and the user can easily override parts of the .timer (ArchLinux Wiki) to configure it for his needs.
NOTE: This would work best after the different backup tasks are implemented as plugins, so that the .timer unit executes the main
backup.zsh
script, which then runs the actual backups depending on a system-wide config file.