From d1961671d284e1103bbf30c934ec990b6461d61e Mon Sep 17 00:00:00 2001 From: Jose Date: Mon, 3 Nov 2025 19:01:33 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20package=20mana?= =?UTF-8?q?ger=20to=20use=20'pkg'=20instead=20of=20'pkf'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switched from 'pkf' to 'pkg' in the Ansible playbook for installing required packages, ensuring consistency with other package managers. --- tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/install.yml b/tasks/install.yml index 2ef89b0..6a4bff4 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -1,7 +1,7 @@ --- - name: Install required packages ansible.builtin.apt: - pkf: "{{ samba_packages }}" + pkg: "{{ samba_packages }}" state: latest update_cache: yes autoclean: yes