Merge "Drop older install CentOS/RHEL 7 tasks"

This commit is contained in:
Zuul 2021-03-20 15:38:48 +00:00 committed by Gerrit Code Review
commit 1f128e903d
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