Skip task for CentOS 8 as well (#74913)

Something change in the packages that was failing on RHEL
a few weeks ago. Now it is failing in CentOS 8 as well
pull/74976/head
Sam Doran 5 years ago committed by GitHub
parent 0691475caf
commit 88eb0f1dfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -145,11 +145,11 @@
register: result
ignore_errors: true
when:
- not (ansible_distribution == 'RedHat' and ansible_distribution_major_version is version('8', '=='))
- not (ansible_facts.os_family == 'RedHat' and ansible_distribution_major_version is version('8', '=='))
- include: assert_fail_msg.yml output={{result}} msg='Truncated incorrect'
when:
- not (ansible_distribution == 'RedHat' and ansible_distribution_major_version is version('8', '=='))
- not (ansible_facts.os_family == 'RedHat' and ansible_distribution_major_version is version('8', '=='))
# ============================================================
# Verify mysql_variable fails when setting an incorrect value (incorrect type)

Loading…
Cancel
Save