Initialize Git Repository: 'Borgbackup-Schedule'
Borgbackup Schedule / Borgbackup Schedule (amd64, bookworm trixie noble, main, cicd.any) (push) Successful in 21s
Borgbackup Schedule / Borgbackup Schedule (arm64, bookworm trixie noble, main, cicd.any) (push) Successful in 22s

This commit is contained in:
Cantibra
2026-05-12 06:28:54 +02:00
commit d7d7c1165a
18 changed files with 824 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# /etc/cron.d/borgbackup
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# * * * * * user command to execute
# | | | | |
# | | | | |
# | | | | |_______________ day of week (0 - 6) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0)
# | | | |______________________ month (1 - 12)
# | | |_____________________________ day of month (1 - 31)
# | |____________________________________ hour (0 - 23)
# |___________________________________________ min (0 - 59)
#
0 */6 * * * root if [ -d '/run/systemd/system' ]; then exit 0; fi; if ! '/usr/lib/borgbackup/check_condition'; then exit 1; fi; '/usr/lib/borgbackup/start_backup';
#