From fcccc6f86e4a80ed2916a3595da8505a4b93a283 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Tue, 5 Jun 2018 09:31:42 +0200 Subject: [PATCH] tests: skip disabling fastest mirror detection on atomic host There is no need to execute this task on atomic hosts. Signed-off-by: Guillaume Abrioux (cherry picked from commit f0cd4b065144843762b9deca667e05a1903b2121) --- tests/functional/setup.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/functional/setup.yml b/tests/functional/setup.yml index 0be082e6d..62c11d212 100644 --- a/tests/functional/setup.yml +++ b/tests/functional/setup.yml @@ -29,7 +29,9 @@ section: main option: enabled value: 0 - when: ansible_distribution == 'CentOS' + when: + - ansible_distribution == 'CentOS' + - not is_atomic - name: install epel package: -- 2.47.3