14 lines
295 B
Text
14 lines
295 B
Text
|
# {{ 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 %}
|