Merge pull request #120 from johanvdw/quote_multiple_sources

Make sure backup source list is escaped
This commit is contained in:
L3D 2024-03-11 10:22:29 +01:00 committed by GitHub
commit c70e0d660a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -82,7 +82,7 @@ export B2_ACCOUNT_KEY={{ restic_repos[item.repo].b2_account_key }}
BACKUP_SOURCE={{ item.src }}
{% endif %}
{% if item.src is defined and item.src.__class__.__name__ =='list' %}
BACKUP_SOURCE={{ item.src| join(' ') }}
BACKUP_SOURCE='{{ item.src| join(' ') }}'
{% endif %}
{% if item.lvm is defined %}