copr: make sure multilib packages are the same version

This commit is contained in:
Miroslav Suchý 2016-05-16 14:10:33 +02:00
parent bd892db582
commit bee008c227

View file

@ -46,8 +46,14 @@
- name: disable offloading - name: disable offloading
command: ethtool -K eth0 tso off gro off gso off command: ethtool -K eth0 tso off gro off gso off
# we need to upgrade x86_64 othwerwise we can have different version of multilib glibc
- name: install multilib deps for nosync.x86_64
yum: state=latest pkg={{ item }}
with_items:
- glibc
- nss-softokn-freebl
- name: install multilib deps for nosync.i686 - name: install multilib deps for nosync.i686
yum: state=present pkg={{ item }} yum: state=latest pkg={{ item }}
with_items: with_items:
- glibc.i686 - glibc.i686
- nss-softokn-freebl.i686 - nss-softokn-freebl.i686