Revert "looks like we might not need this on ppc64 hosts"

We do need it. Just due to compose issue we need to manually install it for now.

This reverts commit 87cf148af4.
This commit is contained in:
Kevin Fenzi 2016-12-14 23:40:34 +00:00
parent 87cf148af4
commit 5deea2c323

View file

@ -18,9 +18,9 @@
- fas_client
when: ansible_cmdline.ostree is not defined
- name: install nss_db on rhel or fedora 25 or greater non ppc hosts only
- name: install nss_db on rhel or fedora 25 or greater hosts only
package: state=present name=nss_db
when: ( ansible_distribution_major_version|int == 6 or ansible_distribution_major_version|int > 24 ) and ansible_architecture != 'ppc64'
when: ansible_distribution_major_version|int == 6 or ansible_distribution_major_version|int > 24
tags:
- packages
- fas_client