ansible-pilote/templates/bacula/conf.d/clients.conf.j2

16 lines
389 B
Text
Raw Permalink Normal View History

{{ ansible_managed | comment }}
{% for client in bacula_clients %}
Client {
Name = {{ client['name'] }}
Address = {{ client['address'] }}
FDPort = 9102
Catalog = {{ client['catalog'] }}
Password = "{{ client['password'] }}"
File Retention = {{ client['file_retention'] }}
Job Retention = {{ client['job_retention'] }}
AutoPrune = {{ client['autoprune'] }}
}
{% endfor %}