mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #601 from ceph/install-libnss3-tools
ceph-rgw: install libnss3-tools for keystonepull/606/head
commit
ded0667ab9
|
@ -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