Update for automated response around poorly behaving archlinux-keyring weekly timer; rename Sora role to Password
This commit is contained in:
35
roles/Password/tasks/daemon.yml
Normal file
35
roles/Password/tasks/daemon.yml
Normal file
@@ -0,0 +1,35 @@
|
||||
---
|
||||
- name: Create the base config
|
||||
become: yes
|
||||
template:
|
||||
src: slapd.ldif
|
||||
dest: /etc/openldap/slapd.ldif
|
||||
owner: ldap
|
||||
group: ldap
|
||||
mode: 0640
|
||||
|
||||
- name: Create the directories
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
owner: ldap
|
||||
group: ldap
|
||||
mode: 0700
|
||||
loop:
|
||||
- /var/lib/openldap/openldap-data/
|
||||
- /etc/openldap
|
||||
- /etc/openldap/users.d
|
||||
- /etc/openldap/groups.d
|
||||
- /etc/openldap/slapd.d
|
||||
|
||||
- name: Initialize the instance
|
||||
become: yes
|
||||
command:
|
||||
cmd: slapadd -n 0 -F /etc/openldap/slapd.d/ -l /etc/openldap/config.ldif && chown -R ldap: /etc/openldap
|
||||
creates: /etc/openldap/slapd.d/cn=config
|
||||
|
||||
- name: Ensure the service
|
||||
become: yes
|
||||
service:
|
||||
name: slapd
|
||||
state: restarted
|
||||
enabled: yes
|
Reference in New Issue
Block a user