ansible-role-unix-users/templates/config.j2
Markus Pesch e4e8ca9075
All checks were successful
continuous-integration/drone/push Build is passing
fix: ssh client config without =
2022-07-20 16:09:04 +02:00

14 lines
281 B
Django/Jinja

#jinja2: lstrip_blocks: True
#
# {{ ansible_managed }}
#
{% for config in unix_user.value.ssh.config %}
{% for property, value in config.items() %}
{% if property == "Host" %}
{{ property }} {{ value }}
{% else %}
{{ property }} {{ value }}
{% endif %}
{% endfor %}
{% endfor %}