[FIX] apt state latest only after adding custom apt repo

This commit is contained in:
Jannik Beyerstedt 2019-10-27 11:40:03 +01:00
parent 2122e7f4eb
commit 7ddcfaee9b
7 changed files with 9 additions and 11 deletions

View file

@ -42,12 +42,12 @@ borg create \
backup_exit=$?
# Prune old backups: keep 7 daily, 4 weekly and 3 monthly
# Prune old backups: keep 7 daily, 3 weekly and 2 monthly (3 months total)
borg prune \
--prefix '{{ borgbackup_host }}-' \
--keep-daily 7 \
--keep-weekly 4 \
--keep-monthly 3
--keep-weekly 3 \
--keep-monthly 2
prune_exit=$?