From 995844599d73f56916af091238e7ca827e29ccc7 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Thu, 8 Oct 2015 08:02:36 +0000 Subject: [PATCH] koji builder: install oz/imagefctory on all but the PPC EPEL builders --- roles/koji_builder/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/koji_builder/tasks/main.yml b/roles/koji_builder/tasks/main.yml index ebc1ac0863..89ff0a0f7a 100644 --- a/roles/koji_builder/tasks/main.yml +++ b/roles/koji_builder/tasks/main.yml @@ -82,7 +82,7 @@ tags: - koji_builder -- name: add oz/imagefctory pkgs on x86 and arm only. +- name: add oz/imagefctory pkgs on all but PPC EPEL yum: state=present pkg={{ item }} with_items: - oz @@ -98,7 +98,7 @@ - python-psphere - VMDKstream - pykickstart - when: ansible_architecture != 'ppc64' + when: not inventory_hostname.startswith('buildppc-') tags: - koji_builder