Changeset - 58e1c3121e77
[Not reviewed]
0 1 0
Branko Majic (branko) - 11 years ago 2015-03-08 11:20:43
branko@majic.rs
MAR-1: Added configuration of Strength Security Factor (SSF).
1 file changed with 3 insertions and 0 deletions:
0 comments (0 inline, 0 general)
roles/ldap_server/tasks/main.yml
Show inline comments
 
@@ -37,12 +37,15 @@
 
- name: Configure TLS for slapd
 
  ldap_entry: dn=cn=config state=replaceattributes olcTLSCertificateFile="{{ ldap_server_config.tls_certificate }}" olcTLSCertificateKeyFile="{{ ldap_server_config.tls_key }}"
 
  when: tls_key.stat.exists and tls_certificate.stat.exists
 
  notify:
 
    - Restart slapd
 

	
 
- name: Configure SSF
 
  ldap_entry: dn=cn=config state=replaceattributes olcSecurity=ssf="{{ ldap_server_config.ssf }}" olcLocalSSF="{{ ldap_server_config.ssf }}"
 

	
 
- name: Apply database permissions
 
  ldap_permissions:
 
    filter: "{{ item.filter }}"
 
    rules: "{{ item.rules }}"
 
  with_items: ldap_permissions
 

	
0 comments (0 inline, 0 general)