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"