From: Sébastien Han Date: Thu, 3 Mar 2016 13:43:01 +0000 (+0100) Subject: ceph-rgw: install libnss3-tools for keystone X-Git-Tag: v1.0.2~11^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F601%2Fhead;p=ceph-ansible.git ceph-rgw: install libnss3-tools for keystone closes: #598 Signed-off-by: Sébastien Han --- diff --git a/roles/ceph-rgw/tasks/openstack-keystone.yml b/roles/ceph-rgw/tasks/openstack-keystone.yml index 770782015..b9b474327 100644 --- a/roles/ceph-rgw/tasks/openstack-keystone.yml +++ b/roles/ceph-rgw/tasks/openstack-keystone.yml @@ -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 }}"