From fe3acd58e8b7a94e4e4ddcbd191c424ef03fe3a0 Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 15 Feb 2026 08:22:52 +0100 Subject: [PATCH] =?UTF-8?q?refactor=20=E2=99=BB=EF=B8=8F:=20Refactor=20tas?= =?UTF-8?q?k=20names=20for=20clarity=20and=20consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated task names in `tasks/apt.yml` to be more descriptive and consistent, improving readability and maintainability. --- tasks/apt.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/apt.yml b/tasks/apt.yml index 03d4d1a..31c4f15 100644 --- a/tasks/apt.yml +++ b/tasks/apt.yml @@ -2,7 +2,7 @@ # ------------------------------------------------- # Reduce apt translation downloads (use defaults) # ------------------------------------------------- -- name: Configure APT translations using default languages +- name: apt | Configure APT translations using default languages ansible.builtin.copy: dest: /etc/apt/apt.conf.d/99-languages content: | @@ -18,7 +18,7 @@ # ------------------------------------------------- # Force APT to use IPv4 # ------------------------------------------------- -- name: Force APT to use IPv4 +- name: apt | Force APT to use IPv4 ansible.builtin.copy: dest: /etc/apt/apt.conf.d/99force-ipv4 content: 'Acquire::ForceIPv4 "true";' @@ -26,6 +26,6 @@ group: root mode: '0644' -- name: Update apt cache +- name: apt | Update apt cache ansible.builtin.apt: update_cache: yes