From 982fb1cab37b5075cd98fc10a9fe23945bcacd5c Mon Sep 17 00:00:00 2001 From: Alik Kurdyukov Date: Sat, 14 Jun 2025 13:58:42 +0400 Subject: [PATCH] fix for indent --- templates/config.yaml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/config.yaml.j2 b/templates/config.yaml.j2 index d8bcc9a..b896911 100644 --- a/templates/config.yaml.j2 +++ b/templates/config.yaml.j2 @@ -174,5 +174,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=4) }} +{{ borgmatic_hooks[hook] | to_nice_yaml(indent=4) | indent(4, first=true) }} {% endfor %}