ansible-role-bareos/templates/server-pool.conf.j2

14 lines
295 B
Text
Raw Normal View History

2021-09-12 09:55:41 +00:00
# {{ ansible_managed }}
{% for client_name, client in bareos_server_clients.items() %}
Pool {
Name = {{ client_name }}
PoolType = Backup
Recycle = yes
AutoPrune = yes
VolumeRetention = {{ client.retention }}
MaximumVolumeJobs = 1
LabelFormat = "{{ client_name }}-"
}
{% endfor %}