From bb8e069fd1e07643db37834fb3421db4635a8b37 Mon Sep 17 00:00:00 2001 From: VC Date: Wed, 22 Jan 2025 17:09:03 +0100 Subject: [PATCH] feat: add fuse with restic --- roles/restic/tasks/install.yml | 6 ++++++ 1 file changed, 6 insertions(+) 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 }}"