Initial commit
Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
d547c7f607
commit
096a3e0540
69 changed files with 1650 additions and 0 deletions
16
templates/bacula/conf.d/pools.conf.j2
Normal file
16
templates/bacula/conf.d/pools.conf.j2
Normal file
|
@ -0,0 +1,16 @@
|
|||
{{ ansible_managed | comment }}
|
||||
|
||||
{% for pool in bacula_pools | default([]) %}
|
||||
Pool {
|
||||
Name = {{ pool['name'] }}
|
||||
Pool Type = {{ pool['pool_type'] }}
|
||||
Recycle = {{ pool['recycle'] }}
|
||||
AutoPrune = {{ pool['auto_prune'] }}
|
||||
Volume Retention = {{ pool['volume_retention'] }}
|
||||
Storage = {{ pool['storage'] }}
|
||||
Maximum Volume Bytes = {{ pool['maximum_volume_bytes'] }}
|
||||
Maximum Volumes = {{ pool['maximum_volumes'] }}
|
||||
LabelFormat = "{{ pool['labelformat'] }}"
|
||||
}
|
||||
|
||||
{% endfor %}
|
Loading…
Add table
Add a link
Reference in a new issue