Eduardo Olivares 3c6277ba9f Remove devstack-tobiko-centos job
The centos job has not worked for a long time, while it was only run in
the periodic pipeline.

Change-Id: I11fc943e77f6f8d14682049f398ba41926723894
2025-01-15 12:14:57 +01:00

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'