ansible/roles/pve_auth/templates/shadow.cfg.j2
2023-04-05 22:06:50 +02:00

7 lines
176 B
Django/Jinja

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