No nss_db on rhel7

This commit is contained in:
Kevin Fenzi 2014-06-20 23:55:08 +00:00
parent 6cab3284fc
commit b3a4f7fdaf

View file

@ -18,7 +18,7 @@
- name: install nss_db on rhel hosts only
yum: state=installed name=nss_db
when: is_rhel is defined
when: is_rhel is defined and ansible_distribution_major_version == 6
tags:
- packages
@ -27,6 +27,7 @@
#
- name: setup /etc/nsswitch.conf for client use
copy: src=nsswitch.conf dest=/etc/nsswitch.conf owner=root mode=644
when: is_rhel is defined and ansible_distribution_major_version == 6
tags:
- config