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
This commit is contained in:
Dmitriy Rabotyagov 2024-07-08 16:54:53 +02:00
parent 307bf9a207
commit 92dd758f04

View File

@ -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 %}