]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
ceph-rgw: install libnss3-tools for keystone 601/head
authorSébastien Han <seb@redhat.com>
Thu, 3 Mar 2016 13:43:01 +0000 (14:43 +0100)
committerSébastien Han <seb@redhat.com>
Thu, 3 Mar 2016 13:43:01 +0000 (14:43 +0100)
closes: #598

Signed-off-by: Sébastien Han <seb@redhat.com>
roles/ceph-rgw/tasks/openstack-keystone.yml

index 7707820157394ce114fedf0086f239c99a57554b..b9b47432794db2c436cf5b0d5640dc60f0f58ace 100644 (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
   file:
     path: "{{ radosgw_nss_db_path }}"