From d016b0e2de772bac81a208ac974814aa4a3deec1 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 8 May 2018 19:35:28 +0000 Subject: [PATCH] clean that up and see if this works --- tasks/yumrepos.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/yumrepos.yml b/tasks/yumrepos.yml index c1d86cc301..60e5396e99 100644 --- a/tasks/yumrepos.yml +++ b/tasks/yumrepos.yml @@ -37,7 +37,7 @@ - fedora.repo - fedora-updates.repo - fedora-updates-testing.repo - 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 not inventory_hostname.startswith('f28-test') and not inventory_hostname.startswith('wiki01.stg') and ansible_distribution_major_version|int < 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 not inventory_hostname.startswith('wiki01.stg') and ansible_distribution_major_version < 28 tags: - config - packages @@ -47,9 +47,9 @@ copy: src="{{ files }}/common/{{ item }}" dest="/etc/yum.repos.d/{{ item }}" with_items: - fedora.repo - - fedora-updates.repo - - fedora-updates-testing.repo - 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 not inventory_hostname.startswith('f28-test') and not inventory_hostname.startswith('wiki01.stg') and ansible_distribution_major_version|int => 28 + - 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 tags: - config - packages