Merge "Only use RHEL8 deps repo on Red Hat systems newer than 7"

This commit is contained in:
Zuul 2019-09-04 21:57:14 +00:00 committed by Gerrit Code Review
commit ed1c6867e1
2 changed files with 9 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Vendored from rdo-release: https://github.com/rdo-infra/rdo-release # Vendored from rdo-release: https://github.com/rdo-infra/rdo-release
{% if ansible_distribution == 'CentOS' %} {% if ansible_distribution in ['CentOS', 'RedHat'] and ansible_distribution_major_version|int <= 7 %}
[centos-openstack-queens] [centos-openstack-queens]
name=CentOS OpenStack Queens Repository name=CentOS OpenStack Queens Repository
{% if zuul_site_mirror_fqdn is defined %} {% if zuul_site_mirror_fqdn is defined %}
@ -10,7 +10,7 @@ baseurl=http://mirror.centos.org/centos/7/cloud/$basearch/openstack-queens/
gpgcheck=1 gpgcheck=1
enabled=1 enabled=1
gpgkey=file:///tmp/RPM-GPG-KEY-CentOS-SIG-Cloud gpgkey=file:///tmp/RPM-GPG-KEY-CentOS-SIG-Cloud
{% elif ansible_distribution == 'RedHat' %} {% elif ansible_distribution == 'RedHat' and ansible_distribution_major_version|int >= 8 %}
[RDO-RHEL8-deps] [RDO-RHEL8-deps]
name=RedHat Openstack deps repo name=RedHat Openstack deps repo
baseurl=https://trunk.rdoproject.org/rhel8-master/deps/latest/ baseurl=https://trunk.rdoproject.org/rhel8-master/deps/latest/

View File

@ -1,3 +1,8 @@
--- ---
ovs_package: "rhosp-openvswitch" ovs_package: >-
{% if ansible_distribution_major_version|int >= 8 -%}
rhosp-openvswitch
{%- else -%}
openvswitch
{%- endif %}
ovs_service: "openvswitch" ovs_service: "openvswitch"