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)
This commit is contained in:
Dmitriy Rabotyagov 2024-07-08 16:54:53 +02:00
parent d8ccce44c1
commit 6bbbbe2326

View File

@ -4,6 +4,6 @@
{% if openstack_hosts_git_safe_directories is defined %} {% if openstack_hosts_git_safe_directories is defined %}
[safe] [safe]
{% for dir in openstack_hosts_git_safe_directories %} {% for dir in openstack_hosts_git_safe_directories %}
directory {{ dir }} directory = {{ dir }}
{% endfor %} {% endfor %}
{% endif %} {% endif %}