From cab3d045c1e4405182284ff95015c7144563bf38 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Mon, 22 Feb 2021 21:55:29 +0100 Subject: Simplified and fixed borg role --- templates/backup.sh.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'templates/backup.sh.j2') diff --git a/templates/backup.sh.j2 b/templates/backup.sh.j2 index 9ac8f1d..b1abb79 100644 --- a/templates/backup.sh.j2 +++ b/templates/backup.sh.j2 @@ -13,9 +13,9 @@ export BORG_RSH="ssh -i /root/.ssh/borg" {{ job.pre_command }} {% endif %} {% if job.command_to_pipe is defined %} -{{ job.command_to_pipe }} | borg create borg@{{ borg_server }}:/srv/borg/repos/{{ ansible_hostname }}::{{ job.name }}-{now} {{ job.path | default('-') }} +{{ job.command_to_pipe }} | borg create borg@{{ borg_server }}:/srv/borg/repos/{{ ansible_hostname }}::{{ job.name }}-{now} - {% else %} -borg create borg@{{ borg_server }}:/srv/borg/repos/{{ ansible_hostname }}::{{ job.name }}-{now} {{ job.path }} +borg create {% for exclude in job.exclude|default([]) %} --exclude {{ exclude }}{% endfor %} borg@{{ borg_server }}:/srv/borg/repos/{{ ansible_hostname }}::{{ job.name }}-{now} {{ job.path }} {% endif %} {% if job.post_command is defined %} {{ job.post_command }} -- cgit v1.2.3