From a80ebbeedcdee784198b8018461e64cf4bd3ddf8 Mon Sep 17 00:00:00 2001 From: Mikolaj Izdebski Date: Thu, 13 Dec 2018 18:15:33 +0000 Subject: [PATCH] Install nosync.i686 on x86_64 builders We don't have any RHEL 6 builders any longer. --- roles/koji_builder/tasks/main.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/roles/koji_builder/tasks/main.yml b/roles/koji_builder/tasks/main.yml index c61b583f77..2c7fa46b7b 100644 --- a/roles/koji_builder/tasks/main.yml +++ b/roles/koji_builder/tasks/main.yml @@ -218,16 +218,13 @@ tags: - koji_builder -# -# x86_64 builders run pungify, that needs hfs module in order to make -# The efi/mac images. This module is only needed on rhel. -# - +# x86_64 builders run both x86_64 and i686 builds, that requires multilib +# version of nosync installed to fully take advantage of nosync - name: special pkgs for the x86_64 builders package: state=present pkg={{ item }} with_items: - - kmod-hfsplus - when: is_rhel is defined and ansible_architecture == 'x86_64' and ansible_distribution_major_version|int == '6' + - nosync.i686 + when: ansible_architecture == 'x86_64' tags: - koji_builder