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