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

20 lines
376 B
YAML

- name: "Download restic"
get_url:
url: "{{ restic_url }}"
dest: /tmp/restic.bz2
- name: "Extract restic"
command: "bzip2 -df /tmp/restic.bz2"
- name: "Install restic"
copy:
src: "/tmp/restic"
dest: "/usr/bin/restic"
remote_src: yes
mode: "751"
- name: "Copy excludes file"
copy:
src: "excludes.txt"
dest: "/etc/restic/excludes.txt"