Drop older install CentOS/RHEL 7 tasks

Let's remove these in master, they are not needed
now that we're fully Centos/Rhel 8-based on master.

Change-Id: I1192c263e08e98a7465d92d8565845ab191ea626
This commit is contained in:
Michele Baldessari 2021-03-18 17:17:16 +01:00
parent b2d49f6e39
commit c0dc789401
1 changed files with 0 additions and 17 deletions

View File

@ -1607,23 +1607,6 @@ outputs:
- name: enable KSM on compute
when: compute_ksm_enabled|bool
block:
# mschuppert: we can remove the CentOS/RHEL split here when CentOS8/
# RHEL8 is available and we have the same package name providing the
# KSM services
- name: make sure package providing ksmtuned is installed (CentOS7)
package:
name: qemu-kvm-common-ev
state: present
when:
- ansible_facts['distribution'] == 'CentOS'
- ansible_facts['distribution_major_version'] is version('7', '==')
- name: make sure package providing ksmtuned is installed (RHEL7)
package:
name: qemu-kvm-common-rhev
state: present
when:
- ansible_facts['distribution'] == 'RedHat'
- ansible_facts['distribution_major_version'] is version('7', '==')
- name: make sure package providing ksmtuned is installed (RHEL8 or CentOS8)
package:
name: qemu-kvm-common