Merge pull request #601 from ceph/install-libnss3-tools

ceph-rgw: install libnss3-tools for keystone
pull/606/head
Leseb 2016-03-03 15:40:49 +01:00
commit ded0667ab9
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 }}"