5380eb5b6e
This was a setting added for infra cloud that had to do with bootstrap order. It seems to have been cargo-culted elsewhere. Remove it. Let's be specific with our sources.list files. Change-Id: Iefbd59ad20e9fdc450d9a0c4e58b9cf4a89ff5a3
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
|