Skip mongodb tests on all centos versions.

The tests were already skipped for versions 6 and 7, and are not passing on version 8.
pull/67901/head
Matt Clay 5 years ago
parent 0c0b3f054b
commit 40dc851f7e

@ -25,7 +25,7 @@
or (ansible_os_family == "RedHat" and ansible_distribution_major_version == '6')
or ansible_os_family == "Suse"
or ansible_distribution == 'Fedora'
or (ansible_facts['distribution'] == "CentOS" and ansible_facts['distribution_major_version'] == '7')
or (ansible_facts['distribution'] == "CentOS")
# Ubuntu
- name: Import MongoDB public GPG Key

@ -25,7 +25,7 @@
or (ansible_os_family == "RedHat" and ansible_distribution_major_version == '6')
or ansible_os_family == "Suse"
or ansible_distribution == 'Fedora'
or (ansible_facts['distribution'] == "CentOS" and ansible_facts['distribution_major_version'] == '7')
or (ansible_facts['distribution'] == "CentOS")
# Ubuntu
- name: Import MongoDB public GPG Key

Loading…
Cancel
Save