From 979c8cb327c90442c757277bea1ffaa6eab0f509 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Tue, 8 May 2018 21:39:04 +0200 Subject: [PATCH] Double 'and' does not work Signed-off-by: Patrick Uiterwijk --- tasks/yumrepos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/yumrepos.yml b/tasks/yumrepos.yml index 60e5396e99..6526c444ef 100644 --- a/tasks/yumrepos.yml +++ b/tasks/yumrepos.yml @@ -49,7 +49,7 @@ - fedora.repo - fedora-updates.repo-28 - fedora-updates-testing.repo-28 - when: ansible_distribution == 'Fedora' and (ansible_architecture == 'aarch64' or ansible_architecture == 'x86_64' or ansible_architecture == 'i386' or ansible_architecture == 'armv7l') and not inventory_hostname.startswith('arm03') and and ansible_distribution_major_version > 27 + when: ansible_distribution == 'Fedora' and (ansible_architecture == 'aarch64' or ansible_architecture == 'x86_64' or ansible_architecture == 'i386' or ansible_architecture == 'armv7l') and not inventory_hostname.startswith('arm03') and ansible_distribution_major_version > 27 tags: - config - packages