mirror of https://github.com/ceph/ceph-ansible.git
ceph-rgw: install libnss3-tools for keystone
closes: #598 Signed-off-by: Sébastien Han <seb@redhat.com>pull/601/head
parent
9cb5849cd2
commit
b206efaeab
|
@ -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
|
||||
file:
|
||||
path: "{{ radosgw_nss_db_path }}"
|
||||
|
|
Loading…
Reference in New Issue