11 lines
229 B
Django/Jinja
11 lines
229 B
Django/Jinja
{{ ansible_managed | comment }}
|
|
{% for user_name, user in bareos_server_users.items() %}
|
|
|
|
Console {
|
|
Name = "{{ user_name }}"
|
|
Password = "{{ user.password }}"
|
|
Profile = "{{ user.profile }}"
|
|
TLS Enable = No
|
|
}
|
|
{% endfor %}
|