
If we move these into a subdir, it cleans up the number of things we nave to files match on. Stop running disable-puppet-agent in base. We run it in run-puppet which should be fine. Change-Id: Ia16adb96b11d25a097490882c4c59a50a0b7b23d
18 lines
432 B
YAML
18 lines
432 B
YAML
- name: Configure apt retries
|
|
copy:
|
|
mode: 0444
|
|
src: 80retry
|
|
dest: /etc/apt/apt.conf.d/80retry
|
|
|
|
- name: Disable apt translations
|
|
copy:
|
|
mode: 0444
|
|
src: 90no-translations
|
|
dest: /etc/apt/apt.conf.d/90no-translations
|
|
|
|
- name: Replace sources.list file
|
|
copy:
|
|
src: 'sources.list.{{ ansible_facts.lsb.codename }}.{{ ansible_facts.architecture }}'
|
|
dest: /etc/apt/sources.list
|
|
notify: Update apt cache
|