b4bc89dfff
This stops short of enrolling the nodes in Ironic, but provides some coverage of the earlier stages. Change-Id: I48a0bafaff1555caea0a7d216ac6f6a4f11c2b55 Depends-On: https://review.openstack.org/#/c/615544/ Depends-On: https://review.openstack.org/#/c/616510/ Depends-On: https://review.openstack.org/#/c/616501/
15 lines
486 B
YAML
15 lines
486 B
YAML
---
|
|
- block:
|
|
# NOTE(mgoddard): The CentOS image used in CI has epel-release installed,
|
|
# but the configure-mirrors role used by Zuul disables epel. Since we
|
|
# install epel-release and expect epel to be enabled, enable it here.
|
|
- name: Ensure yum-utils is installed
|
|
yum:
|
|
name: yum-utils
|
|
state: installed
|
|
|
|
- name: Enable the EPEL yum repository
|
|
command: yum-config-manager --enable epel
|
|
when: ansible_os_family == 'RedHat'
|
|
become: true
|