Fix config template
Some checks failed
Test / test (push) Failing after 37s

This commit is contained in:
SebClem 2024-05-17 11:07:13 +02:00
parent d1219b63fb
commit e67b11b356
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50

View File

@ -76,14 +76,8 @@ exclude_if_present:
remote_path: {{ borg_remote_path }}
{% endif %}
# Repository storage options. See
# https://borgbackup.readthedocs.io/en/stable/usage.html#borg-create and
# https://borgbackup.readthedocs.io/en/stable/usage/general.html#environment-variables for
# details.
storage:
{% if borg_encryption_passphrase %}
encryption_passphrase: {{ borg_encryption_passphrase }}
encryption_passphrase: {{ borg_encryption_passphrase }}
{% endif %}
# The standard output of this command is used to unlock the encryption key. Only
# use on repositories that were initialized with passcommand/repokey encryption.
@ -190,5 +184,5 @@ check_last: {{ borgmatic_check_last }}
# prevent potential shell injection or privilege escalation.
{% for hook in borgmatic_hooks %}
{{ hook }}:
{{ borgmatic_hooks[hook] | to_nice_yaml(indent=2) | trim | indent(8) }}
{{ borgmatic_hooks[hook] | to_nice_yaml(indent=4) | indent(4) }}
{% endfor %}