Skip mongodb tests on all centos versions.

The tests were already skipped for versions 6 and 7, and are not passing on version 8.
This commit is contained in:
Matt Clay 2020-03-01 10:21:38 -08:00
parent 0c0b3f054b
commit 40dc851f7e
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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