2018-12-01 00:31:11 +00:00
|
|
|
---
|
|
|
|
- block:
|
|
|
|
- name: Install required packages
|
|
|
|
package:
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: present
|
2019-09-18 15:23:35 +00:00
|
|
|
loop:
|
2018-12-01 00:31:11 +00:00
|
|
|
- openldap-servers
|
|
|
|
- openldap-clients
|
|
|
|
|
2018-12-01 14:51:13 +00:00
|
|
|
- name: Ensure base directories exists at '{{ ldap_proxy_base_dir }}'
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
|
|
|
owner: root
|
|
|
|
group: root
|
2021-02-04 20:53:48 +00:00
|
|
|
mode: 0750
|
2019-09-18 15:23:35 +00:00
|
|
|
loop:
|
2018-12-01 14:51:13 +00:00
|
|
|
- "{{ ldap_proxy_base_dir }}"
|
|
|
|
- "{{ ldap_proxy_acl_file | dirname }}"
|
|
|
|
|
2018-12-01 00:31:11 +00:00
|
|
|
- name: Deploy environment file
|
|
|
|
template:
|
|
|
|
src: "etc/sysconfig/slapd.j2"
|
|
|
|
dest: "/etc/sysconfig/slapd"
|
|
|
|
owner: root
|
|
|
|
group: root
|
2021-02-04 20:53:48 +00:00
|
|
|
mode: 0600
|
2019-01-09 19:51:32 +00:00
|
|
|
notify: __slapd_restart
|
2018-12-01 00:31:11 +00:00
|
|
|
|
2018-12-01 14:51:13 +00:00
|
|
|
- name: Deploy config file to '{{ ldap_proxy_base_dir }}/slapd.conf'
|
2018-12-01 00:31:11 +00:00
|
|
|
template:
|
|
|
|
src: "etc/openldap/slapd.conf.j2"
|
2018-12-01 14:51:13 +00:00
|
|
|
dest: "{{ ldap_proxy_base_dir }}/slapd.conf"
|
2018-12-01 00:31:11 +00:00
|
|
|
owner: root
|
2021-02-04 22:14:26 +00:00
|
|
|
group: ldap
|
2021-02-04 20:53:48 +00:00
|
|
|
mode: 0640
|
2019-01-09 19:51:32 +00:00
|
|
|
notify: __slapd_restart
|
2018-12-01 01:03:29 +00:00
|
|
|
|
2018-12-01 14:51:13 +00:00
|
|
|
- name: Deploy access control file '{{ ldap_proxy_acl_file }}'
|
2018-12-01 14:37:47 +00:00
|
|
|
template:
|
|
|
|
src: "etc/openldap/slapd.access.j2"
|
2018-12-01 14:51:13 +00:00
|
|
|
dest: "{{ ldap_proxy_acl_file }}"
|
2018-12-01 14:37:47 +00:00
|
|
|
owner: root
|
2021-02-04 22:14:26 +00:00
|
|
|
group: ldap
|
2021-02-04 20:53:48 +00:00
|
|
|
mode: 0640
|
2019-01-09 19:51:32 +00:00
|
|
|
notify: __slapd_restart
|
2018-12-01 14:37:47 +00:00
|
|
|
|
2018-12-12 21:08:46 +00:00
|
|
|
- name: Deploy custom ldap schemas
|
2018-12-12 21:23:54 +00:00
|
|
|
copy:
|
2018-12-12 21:08:46 +00:00
|
|
|
src: "{{ item }}"
|
|
|
|
dest: "/etc/openldap/schema/{{ item | basename }}"
|
|
|
|
owner: root
|
2021-02-04 22:14:26 +00:00
|
|
|
group: ldap
|
2021-02-04 20:53:48 +00:00
|
|
|
mode: 0640
|
2019-09-18 15:23:35 +00:00
|
|
|
loop: "{{ ldap_proxy_custom_schemas }}"
|
2019-01-09 19:51:32 +00:00
|
|
|
notify: __slapd_restart
|
2018-12-01 00:31:11 +00:00
|
|
|
become: True
|
|
|
|
become_user: root
|