2f447f6545
CentOS Stream 8 support has been dropped. Migration path will be present in Yoga release - as a followup change. MichaelRigart.interfaces does not support custom routes for NetworkManager yet. It has been disabled in CI for Rocky Linux 9 temporarily. Non-voting CentOS Stream 9 CI overcloud job is using RL9 container images (as kolla CI is not building CS9 images anymore). Change-Id: Idf5ee822b03ba40179803c981500a6bad37594bf
22 lines
631 B
YAML
22 lines
631 B
YAML
---
|
|
- name: Install dbus for debian system
|
|
apt:
|
|
name: dbus
|
|
when:
|
|
- ansible_facts.os_family == 'Debian'
|
|
become: true
|
|
|
|
- block:
|
|
# NOTE(mgoddard): The CentOS image used in CI has epel-release installed,
|
|
# but the configure-mirrors role used by Zuul disables epel. We no longer
|
|
# install EPEL by default, but let's just be sure it's disabled.
|
|
- name: Ensure dnf-plugins-core is installed
|
|
package:
|
|
name: dnf-plugins-core
|
|
state: present
|
|
|
|
- name: Enable the EPEL repository
|
|
command: dnf config-manager --disable epel
|
|
when: ansible_facts.os_family == 'RedHat'
|
|
become: true
|