ceph-ansible/roles/ceph-rgw/tasks/openstack-keystone.yml

33 lines
891 B
YAML
Raw Normal View History

---
2016-10-07 16:36:19 +08:00
- name: install nss-tools on redhat
yum:
2016-10-07 16:36:19 +08:00
name: nss-tools
state: present
when: ansible_pkg_mgr == "yum"
2016-10-07 16:36:19 +08:00
- name: install nss-tools on redhat
dnf:
2016-10-07 16:36:19 +08:00
name: nss-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
2015-10-19 11:19:31 +08:00
file:
path: "{{ radosgw_nss_db_path }}"
state: directory
owner: root
group: root
mode: 0644
- name: create nss entries for keystone certificates
shell: "{{ item }}"
with_items:
- "openssl x509 -in /etc/keystone/ssl/certs/ca.pem -pubkey |certutil -d {{ radosgw_nss_db_path }} -A -n ca -t 'TCu,Cu,Tuw'"
- "openssl x509 -in /etc/keystone/ssl/certs/signing_cert.pem -pubkey | certutil -A -d {{ radosgw_nss_db_path }} -n signing_cert -t 'P,P,P'"