Remove non-functional Joomla LDAP integration

- Disabled LDAP feature flag (set to false by default, with comment)
- Removed ldapautocreate plugin (PHP + XML)
- Deleted LDAP helper tasks (01_ldap_files.yml, 05_ldap.yml, 07_diagnose.yml)
- Deleted LDAP CLI helper scripts (cli.php, diagnose.php, plugins.php, auth-trace.php)
- Removed LDAP configuration variables from vars/main.yml
- Removed LDAP environment variables from env.j2
- Removed LDAP-specific mounts from docker-compose.yml.j2
- Dropped php-ldap installation from Dockerfile
- Renamed task files for consistent numbering (02->01_install, 03->02_debug, 04->03_patch, 06->04_assert)

Reason: LDAP integration was removed because it was not functional.

Conversation: https://chatgpt.com/share/68b09373-7aa8-800f-8f2c-11e27123bad1
This commit is contained in:
2025-08-28 19:36:12 +02:00
parent fe399c3967
commit 9f2cfe65af
19 changed files with 15 additions and 947 deletions

View File

@@ -1,40 +1,26 @@
---
#- name: "Include role srv-domain-provision for {{ application_id }}"
# include_role:
# name: srv-domain-provision
# loop: "{{ JOOMLA_DOMAINS }}"
# loop_control:
# loop_var: domain
# vars:
# http_port: "{{ ports.localhost.http[application_id] }}"
- name: "Include role srv-domain-provision for {{ application_id }}"
include_role:
name: srv-domain-provision
loop: "{{ JOOMLA_DOMAINS }}"
loop_control:
loop_var: domain
vars:
http_port: "{{ ports.localhost.http[application_id] }}"
- name: "load docker and db for {{ application_id }}"
include_role:
name: cmp-db-docker
vars:
docker_compose_flush_handlers: false
- name: Include install routines
include_tasks: "01_ldap_files.yml"
- name: "flush docker compose handlers"
meta: flush_handlers
docker_compose_flush_handlers: true
- name: Include install routines
include_tasks: "{{ item }}"
loop:
- 02_install.yml
- 03_debug.yml
- 04_patch.yml
- name: Include LDAP routines
include_tasks: "05_ldap.yml"
when: JOOMLA_LDAP_ENABLED | bool
- 01_install.yml
- 02_debug.yml
- 03_patch.yml
- name: Include assert routines
include_tasks: "06_assert.yml"
include_tasks: "04_assert.yml"
when: MODE_ASSERT | bool
- name: Include LDAP diagnose routines
include_tasks: "07_diagnose.yml"
when: MODE_DEBUG | bool and JOOMLA_LDAP_ENABLED | bool