fix: borgmatic disable consistency check

mise_a_niveau
Lzebulon 2026-01-12 13:49:34 +01:00
parent ed18ef7854
commit b0e3952891
No known key found for this signature in database
GPG Key ID: D6CDAB8050CBBE7D
2 changed files with 5 additions and 6 deletions

View File

@ -13,8 +13,8 @@ glob_borg:
retention: retention:
- ["daily", 4] - ["daily", 4]
- ["monthly", 6] - ["monthly", 6]
consistency_check: skip_actions:
- disabled - check
extra_init: extra_init:
- make-parent-dirs - make-parent-dirs
encryption_passphrase: "{{ vault.borg.encryption_passphrase }}" encryption_passphrase: "{{ vault.borg.encryption_passphrase }}"

View File

@ -71,10 +71,9 @@ retention:
{% endfor %} {% endfor %}
prefix: '{hostname}-' prefix: '{hostname}-'
consistency: skip_actions:
checks: {% for action in borg.skip_actions %}
{% for check in borg.consistency_check %} - {{ action }}
- {{ check }}
{% endfor %} {% endfor %}
{% if borg.hooks | default([]) %} {% if borg.hooks | default([]) %}