mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-12 00:03:17 +02:00
7 lines
273 B
Django/Jinja
7 lines
273 B
Django/Jinja
{% if item.protocols.rsync.enabled and item.protocols.rsync.users is defined and item.protocols.rsync.users.keys() | list | length > 0 %}
|
|
{% for user in item.protocols.rsync.users.keys() | list %}
|
|
{{ user }}:{{ item.protocols.rsync.users[user] }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|