looks like we might not need this on ppc64 hosts

This commit is contained in:
Kevin Fenzi 2016-12-14 23:28:29 +00:00
parent 52d5e432fa
commit 87cf148af4

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 hosts only
- name: install nss_db on rhel or fedora 25 or greater non ppc hosts only
package: state=present name=nss_db
when: ansible_distribution_major_version|int == 6 or ansible_distribution_major_version|int > 24
when: ( ansible_distribution_major_version|int == 6 or ansible_distribution_major_version|int > 24 ) and ansible_architecture != 'ppc64'
tags:
- packages
- fas_client