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