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

15 lines
277 B
YAML
Raw Normal View History

2021-08-23 14:54:10 +02:00
- name: "Download restic"
2021-08-23 14:34:24 +02:00
get_url:
url: "{{ restic_url }}"
dest: /tmp/restic.bz2
2021-08-23 14:53:08 +02:00
- name: "Extract restic"
2021-08-23 15:07:58 +02:00
command: "bzip2 -df /tmp/restic.bz2"
2021-08-23 14:53:08 +02:00
- name: "Install restic"
copy:
2021-08-23 15:04:53 +02:00
src: "/tmp/restic"
2021-08-23 15:05:47 +02:00
dest: "/usr/bin/restic"
2021-08-23 14:29:27 +02:00
remote_src: yes
mode: "751"