ceph-rgw: install libnss3-tools for keystone

closes: #598

Signed-off-by: Sébastien Han <seb@redhat.com>
pull/601/head
Sébastien Han 2016-03-03 14:43:01 +01:00
parent 9cb5849cd2
commit b206efaeab
1 changed files with 18 additions and 0 deletions

View File

@ -1,4 +1,22 @@
--- ---
- name: install libnss3-tools on redhat
yum:
name: libnss3-tools
state: present
when: ansible_pkg_mgr == "yum"
- name: install libnss3-tools on redhat
dnf:
name: libnss3-tools
state: present
when: ansible_pkg_mgr == "dnf"
- name: install libnss3-tools on debian
apt:
name: libnss3-tools
state: present
when: ansible_pkg_mgr == 'apt'
- name: create nss directory for keystone certificates - name: create nss directory for keystone certificates
file: file:
path: "{{ radosgw_nss_db_path }}" path: "{{ radosgw_nss_db_path }}"