From 535396963a6d5269375c95d271e7d0d8b9f21695 Mon Sep 17 00:00:00 2001 From: Ash <104412531+ashmantis1@users.noreply.github.com> Date: Fri, 2 May 2025 22:07:42 +1000 Subject: [PATCH] Fix: change ansible.builtin.apt to ansible.builtin.package (#20) --------- Co-authored-by: ashmantis1 --- tasks/install.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/install.yml b/tasks/install.yml index ec0d414..304b134 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -1,14 +1,14 @@ --- - name: Install fuse (to mount repositories) - ansible.builtin.apt: + ansible.builtin.package: name: fuse - name: Install bzip2 (to install restic) - ansible.builtin.apt: + ansible.builtin.package: name: bzip2 - name: Install pigz (to compress db dumps) - ansible.builtin.apt: + ansible.builtin.package: name: pigz - name: Download restic