12 lines
236 B
YAML
12 lines
236 B
YAML
- name: Configure APT
|
|
ansible.builtin.copy:
|
|
src: "{{ item }}"
|
|
dest: "/etc/apt/apt.conf.d/10-custom-{{ item }}"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
with_items:
|
|
- no-recommends
|
|
- no-languages
|
|
- no-pager
|