feat : Setup APT translations and use IPv4 #28

Merged
Jose merged 3 commits from dev into main 2026-02-15 08:25:55 +01:00
Showing only changes of commit fe3acd58e8 - Show all commits

View File

@@ -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