From 6bbbbe2326376915419b7a794578b812de12a47b Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Mon, 8 Jul 2024 16:54:53 +0200 Subject: [PATCH] Ensure git safe directory is templated properly We're missing `=` in gitconfig template. That template is being used only when `git` is missing from the image template, which is the reason why it slipped attention. Change-Id: I602cb8b603306241e601cffc2324cb618a1dc792 (cherry picked from commit 92dd758f04772d604f56088d9e72020475e89cb0) --- templates/gitconfig.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/gitconfig.j2 b/templates/gitconfig.j2 index afe8f906..b2e6e94e 100644 --- a/templates/gitconfig.j2 +++ b/templates/gitconfig.j2 @@ -4,6 +4,6 @@ {% if openstack_hosts_git_safe_directories is defined %} [safe] {% for dir in openstack_hosts_git_safe_directories %} - directory {{ dir }} + directory = {{ dir }} {% endfor %} {% endif %}