1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_restic_archiver.git synced 2024-08-16 10:09:49 +02:00

CHANGE: add exclude tags also to stdin command

This commit is contained in:
Matthias Leutenegger 2020-06-05 09:05:15 +02:00
parent 977ed115fb
commit 1ff31d56d7

View file

@ -97,7 +97,12 @@ else
MODE_TAG="--tag cron" MODE_TAG="--tag cron"
fi fi
{% if item.stdin is defined and item.stdin == true %} {% if item.stdin is defined and item.stdin == true %}
{{ item.stdin_cmd }} | {{ restic_install_path }}/restic backup --stdin $MODE_TAG {{ tags(item.tags) }} {{ stdin_filename(item.stdin_filename) }} $@ {{ item.stdin_cmd }} | {{ restic_install_path }}/restic backup \
--stdin $MODE_TAG \
{{ tags(item.tags) }} \
{{ stdin_filename(item.stdin_filename) }} \
{% if item.exclude is defined %}{{ exclude(item.exclude) }}{% endif %} \
$@
{% else %} {% else %}
{{ restic_install_path }}/restic backup $BACKUP_SOURCE $MODE_TAG \ {{ restic_install_path }}/restic backup $BACKUP_SOURCE $MODE_TAG \
{{ tags(item.tags) }} \ {{ tags(item.tags) }} \