From ac2108074492e5018a5e62d6f4004a5a7bae7cce Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 23 Aug 2021 14:34:24 +0200 Subject: [PATCH] download restic to the tmp folder --- tasks/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 8df2e57..aa8fce0 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,6 +1,11 @@ +- name: "Download Keeweb" + get_url: + url: "{{ restic_url }}" + dest: /tmp/restic.bz2 + - name: "Download and install restic" unarchive: - src: "{{ restic_url }}" + src: "/tmp/restic.bz2" dest: /usr/bin/restic remote_src: yes mode: "751"