From 721b88b0fd80926f796227bb2906ef5020371e44 Mon Sep 17 00:00:00 2001 From: L3D Date: Fri, 20 Nov 2020 13:31:57 +0100 Subject: [PATCH] do not perform actual backup --- templates/restic_script_Linux.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/restic_script_Linux.j2 b/templates/restic_script_Linux.j2 index da2985e..c9da047 100644 --- a/templates/restic_script_Linux.j2 +++ b/templates/restic_script_Linux.j2 @@ -103,14 +103,14 @@ else MODE_TAG="--tag cron" fi {% if item.stdin is defined and item.stdin == true %} - {{ item.stdin_cmd }} | {{ restic_install_path }}/restic backup \ + #{{ 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 %} - {{ restic_install_path }}/restic backup $BACKUP_SOURCE $MODE_TAG \ + #{{ restic_install_path }}/restic backup $BACKUP_SOURCE $MODE_TAG \ {{ tags(item.tags) }} \ {% if item.exclude is defined %}{{ exclude(item.exclude) }}{% endif %} \ $@