2021-02-05 10:51:39 +01:00
|
|
|
---
|
2021-07-01 17:36:56 +02:00
|
|
|
- name: ensure apt.conf exists
|
|
|
|
become: true
|
2021-02-05 10:51:39 +01:00
|
|
|
ansible.builtin.template:
|
2021-07-01 17:36:56 +02:00
|
|
|
src: apt.conf
|
|
|
|
dest: "{{ apt_proxy_apt_conf_path | default ('/etc/apt/apt.conf') }}"
|
2021-02-05 10:51:39 +01:00
|
|
|
backup: yes
|
2021-10-20 19:48:17 +02:00
|
|
|
notify: update package lists
|