fix: fix missing file permissions for krypton
This commit is contained in:
parent
94faf739e3
commit
78eeb7b8c6
1 changed files with 6 additions and 5 deletions
11
krypton.yml
11
krypton.yml
|
@ -42,13 +42,14 @@
|
|||
|
||||
- name: Ensure openLDAP directories are present.
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
path: "{{ item.path }}"
|
||||
mode: "0755"
|
||||
state: directory
|
||||
with_items:
|
||||
- "{{ openldap_data }}/ldap"
|
||||
- "{{ openldap_data }}/slapd"
|
||||
- "{{ openldap_data }}/ldif"
|
||||
- "{{ dehydrated_certs_dir }}/{{ openldap_domain }}"
|
||||
- path: "{{ openldap_data }}/ldap"
|
||||
- path: "{{ openldap_data }}/slapd"
|
||||
- path: "{{ openldap_data }}/ldif"
|
||||
- path: "{{ dehydrated_certs_dir }}/{{ openldap_domain }}"
|
||||
|
||||
- name: Ensure container for openLDAP is running.
|
||||
docker_container:
|
||||
|
|
Loading…
Reference in a new issue