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