8 lines
176 B
Text
8 lines
176 B
Text
|
{{ ansible_managed | comment }}
|
||
|
|
||
|
{% for name, user in pve_auth__users.items() %}
|
||
|
{% if user.enabled | default(True) %}
|
||
|
{{ name }}:{{ user.password }}:
|
||
|
{% endif %}
|
||
|
{% endfor %}
|