
The centos job has not worked for a long time, while it was only run in the periodic pipeline. Change-Id: I11fc943e77f6f8d14682049f398ba41926723894
19 lines
325 B
YAML
19 lines
325 B
YAML
---
|
|
|
|
- name: copy '{{ resolv_conf_file}}' file
|
|
become: true
|
|
copy:
|
|
src: '{{ resolv_conf_file }}'
|
|
dest: /etc/resolv.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
|
|
- name: update APT database
|
|
apt:
|
|
update_cache: true
|
|
cache_valid_time: 3600
|
|
become: true
|
|
when:
|
|
- ansible_os_family == 'Debian'
|