This repository has been archived on 2021-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
restic/tasks/main.yml

18 lines
348 B
YAML

- name: "Download Keeweb"
get_url:
url: "{{ restic_url }}"
dest: /tmp/restic.bz2
- name: "Extract restic"
unarchive:
src: "/tmp/restic.bz2"
dest: "/tmp"
remote_src: yes
- name: "Install restic"
copy:
src: "/tmp/restic_{{ restic_version }}_linux_amd64"
dest: "/urs/bin/restic"
remote_src: yes
mode: "751"