:UP: upgrade restic to 0.16.4

This commit is contained in:
Nils Norman Haukås 2024-02-25 07:28:44 +01:00
parent 87724e3d14
commit b5e9f067b8

View file

@ -1,5 +1,5 @@
restic_version: "0.16.3"
restic_version: "0.16.4"
# Map Ansible architectures to how Restic defines them.
architecture_mappings:
@ -11,9 +11,7 @@ restic_architecture: "{{ architecture_mappings[ansible_facts['architecture']] }}
# see also: https://github.com/restic/restic/releases
restic_filename: "restic_{{ restic_version }}_{{ ansible_facts['system'] | lower }}_{{ restic_architecture }}.bz2"
restic_download_url: "https://github.com/restic/restic/releases/download/v{{ restic_version }}/{{ restic_filename }}"
restic_checksum_arm64: sha256:7fdc003748c1fa5ff0d87a64aaa8a029927596db53ee09248494aaebe3970179
restic_checksum_amd64: sha256:aa86e5667c46ab0bdf8ceca80fa3c8775da2bbc18656250a745ac8b042837a70
restic_checksum_arm64: sha256:9d2f44538ea0c6309426cb290d3a6b8b0b85de5de7f1496ff40c843b36bf8a8d
restic_checksum_amd64: sha256:3d4d43c169a9e28ea76303b1e8b810f0dcede7478555fdaa8959971ad499e324
# Select proper checksum based on the host architecture
restic_checksum: "{{ lookup('ansible.builtin.vars', 'restic_checksum_%s'|format(restic_architecture)) }}"
# Build up some good urls here.