diff options
-rw-r--r-- | user/cleanup-backup.service | 11 | ||||
-rw-r--r-- | user/cleanup-backup.timer | 10 |
2 files changed, 21 insertions, 0 deletions
diff --git a/user/cleanup-backup.service b/user/cleanup-backup.service new file mode 100644 index 0000000..61e8b84 --- /dev/null +++ b/user/cleanup-backup.service @@ -0,0 +1,11 @@ +[Unit] +Description=Cleanup backups +ConditionFileIsExecutable=/usr/lib/systemd/scripts/cleanup-backup + +[Service] +EnvironmentFile=/home/%u/.config/crypted-backups +Nice=19 +IOSchedulingClass=2 +IOSchedulingPriority=7 +ExecStart=/usr/lib/systemd/scripts/cleanup-backup + diff --git a/user/cleanup-backup.timer b/user/cleanup-backup.timer new file mode 100644 index 0000000..9879312 --- /dev/null +++ b/user/cleanup-backup.timer @@ -0,0 +1,10 @@ +[Unit] +Description=Cleanup backups every 3rd and 18th of each month at 05:00 + +[Timer] +# Every 3rd and 18th of each month at 5:00 +OnCalendar=*-*-3,18 05:00 +Persistent=true + +[Install] +WantedBy=timers.target |