diff --git a/roles/restic/tasks/install.yml b/roles/restic/tasks/install.yml index 9a196c0..4735a62 100644 --- a/roles/restic/tasks/install.yml +++ b/roles/restic/tasks/install.yml @@ -1,5 +1,11 @@ --- +- name: Install prerequisites + ansible.builtin.package: + name: fuse + state: present + update_cache: true + - name: Download restic ansible.builtin.get_url: url: "{{ restic_download_url }}"