also install nss_db on f25+

This commit is contained in:
Kevin Fenzi 2016-11-29 03:01:04 +00:00
parent ba7042daec
commit 92933addc1

View file

@ -18,9 +18,9 @@
- fas_client
when: ansible_cmdline.ostree is not defined
- name: install nss_db on rhel hosts only
yum: state=present name=nss_db
when: ansible_distribution_major_version|int == 6
- 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
tags:
- packages
- fas_client