mg
e4e84d2218
python zu 3 rest zfs Postfix Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#22 Co-Authored-By: mg <mg@noreply.git.mgrote.net> Co-Committed-By: mg <mg@noreply.git.mgrote.net>
27 lines
892 B
Django/Jinja
27 lines
892 B
Django/Jinja
{{ file_header | default () }}
|
|
## ZFS Section -------------------------------- ##
|
|
{% for item in sanoid_datasets %}
|
|
[{{ item.path }}]
|
|
use_template = {{ item.template }}
|
|
recursive = {{ item.recursive }}
|
|
## -------------------------------------------- ##
|
|
{% endfor %}
|
|
|
|
|
|
|
|
## Template Section --------------------------- ##
|
|
{% for item in sanoid_templates %}
|
|
[template_{{ item.name }}]
|
|
## Keep-Rules
|
|
hourly = {{ item.keep_hourly }}
|
|
daily = {{ item.keep_daily }}
|
|
monthly = {{ item.keep_monthly }}
|
|
yearly = {{ item.keep_yearly }}
|
|
frequently = {{ item.frequently }}
|
|
## Interval
|
|
frequent_period = {{ item.frequent_period }}
|
|
## Other Options
|
|
autosnap = {{ item.autosnap }}
|
|
autoprune = {{ item.autoprune }}
|
|
## -------------------------------------------- ##
|
|
{% endfor %}
|