mirror of
https://github.com/borgbase/ansible-role-borgbackup.git
synced 2024-11-19 19:07:42 +01:00
Add if around exclude options to prevent yaml error. By @Kogelvis (#72)
This commit is contained in:
parent
cce04c3648
commit
b52efea18e
@ -23,19 +23,23 @@ location:
|
|||||||
# Store ctime into archive.
|
# Store ctime into archive.
|
||||||
ctime: {{ borgmatic_store_ctime }}
|
ctime: {{ borgmatic_store_ctime }}
|
||||||
|
|
||||||
|
{% if borg_exclude_patterns|length %}
|
||||||
# Any paths matching these patterns are excluded from backups. Globs and tildes
|
# Any paths matching these patterns are excluded from backups. Globs and tildes
|
||||||
# are expanded. See the output of "borg help patterns" for more details.
|
# are expanded. See the output of "borg help patterns" for more details.
|
||||||
exclude_patterns:
|
exclude_patterns:
|
||||||
{% for dir in borg_exclude_patterns %}
|
{% for dir in borg_exclude_patterns %}
|
||||||
- '{{ dir }}'
|
- '{{ dir }}'
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if borg_exclude_from|length %}
|
||||||
# Read exclude patterns from one or more separate named files, one pattern per
|
# Read exclude patterns from one or more separate named files, one pattern per
|
||||||
# line. See the output of "borg help patterns" for more details.
|
# line. See the output of "borg help patterns" for more details.
|
||||||
exclude_from:
|
exclude_from:
|
||||||
{% for dir in borg_exclude_from %}
|
{% for dir in borg_exclude_from %}
|
||||||
- {{ dir }}
|
- {{ dir }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
# Exclude directories that contain a CACHEDIR.TAG file. See
|
# Exclude directories that contain a CACHEDIR.TAG file. See
|
||||||
# http://www.brynosaurus.com/cachedir/spec.html for details.
|
# http://www.brynosaurus.com/cachedir/spec.html for details.
|
||||||
|
Loading…
Reference in New Issue
Block a user