mirror of
https://github.com/roles-ansible/ansible_role_restic/
synced 2024-11-04 19:13:30 +01:00
Make sure list is escaped
This commit is contained in:
parent
1a9993cda3
commit
e3f0c932df
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,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 %}
|
||||
|
|
Loading…
Reference in a new issue