summaryrefslogtreecommitdiffstats
path: root/roles/restic/tasks/main.yml
blob: ae82d3bcb9003e45ac90a8f3f32778b6e3f710ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
- name: "Check installed restic versions"
  ansible.builtin.command:
    cmd: "mise ls restic"
  register: restic_installed_versions
  changed_when: false

- name: "Install restic"
  ansible.builtin.command:
    cmd: "mise use --global restic@{{ restic_version }}"
  changed_when: true
  when: restic_version not in restic_installed_versions.stdout