10 lines
213 B
Text
10 lines
213 B
Text
|
# {{ ansible_managed }}
|
||
|
{% for client_name, client in bareos_server_clients.items() %}
|
||
|
|
||
|
Client {
|
||
|
Name = "{{ client_name }}"
|
||
|
Address = "{{ client.address }}"
|
||
|
Password = "{{ client.password }}"
|
||
|
}
|
||
|
{% endfor %}
|