mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-04 00:04:14 +02:00
26 lines
1.0 KiB
YAML
26 lines
1.0 KiB
YAML
# @See https://docs.nextcloud.com/server/latest/admin_manual/configuration_user/user_auth_ldap.html
|
|
# @See https://chatgpt.com/c/67aa2d21-cb4c-800f-b1be-8629b6bd3f55
|
|
# @todo implement
|
|
|
|
- name: install LDAP plugin
|
|
command: "docker exec -u www-data {{nextcloud_application_container_name}} {{nextcloud_docker_path}}occ app:install user_ldap"
|
|
ignore_errors: true
|
|
|
|
- name: Activate Nextcloud LDAP App
|
|
command: "docker exec -u www-data {{ nextcloud_application_container_name }} php occ app:enable user_ldap"
|
|
|
|
- name: Load LDAP Nextcloud configuration variables
|
|
include_vars:
|
|
file: ldap.yml
|
|
|
|
- name: Set Nextcloud LDAP config
|
|
loop: "{{ nextcloud_ldap_configuration }}"
|
|
command: >
|
|
docker exec -u www-data {{ nextcloud_application_container_name }}
|
|
php occ config:app:set {{ item.appid }} {{ item.configkey }} --value "{{ item.configvalue }}"
|
|
|
|
- name: Set Nextcloud LDAP bind password
|
|
command: >
|
|
docker exec -u www-data {{ nextcloud_application_container_name }}
|
|
php occ ldap:set-config s01 ldapAgentPassword "{{ ldap.bind_credential }}"
|