Compare commits
1 Commits
e9b5475a39
...
5e1c639bff
Author | SHA1 | Date | |
---|---|---|---|
5e1c639bff |
@ -5,8 +5,6 @@ readme: README.md
|
||||
authors:
|
||||
- Johanna Dorothea Reichmann <transcaffeine@finallycoffee.eu>
|
||||
description: Installing and configuring nextcloud (and related apps/services) using docker
|
||||
dependencies:
|
||||
"community.docker": "^1.10.0"
|
||||
license:
|
||||
- CNPLv7+
|
||||
build_ignore:
|
||||
|
@ -3,5 +3,3 @@
|
||||
nextcloud_container_name: nextcloud
|
||||
nextcloud_apps: []
|
||||
nextcloud_run_user: nextcloud
|
||||
|
||||
nextcloud_apps_check_integrity: false
|
||||
|
@ -48,12 +48,3 @@
|
||||
loop: "{{ nextcloud_apps }}"
|
||||
notify:
|
||||
- restart-nextcloud
|
||||
|
||||
- name: Ensure app integrity
|
||||
community.docker.docker_container_exec:
|
||||
container: "{{ nextcloud_container_name }}"
|
||||
command: "php occ integrity:check-app {{ item.name }}"
|
||||
user: "{{ nextcloud_run_user }}"
|
||||
tty: yes
|
||||
when: nextcloud_apps_check_integrity and item.state|default('present') in ['latest', 'present']
|
||||
loop: "{{ nextcloud_apps }}"
|
||||
|
@ -22,45 +22,4 @@ nc_ldap_config_base_dn_groups:
|
||||
nc_ldap_config_agent_name:
|
||||
nc_ldap_config_agent_password:
|
||||
|
||||
nc_ldap_config_override_main_server: ~
|
||||
nc_ldap_config_tls: ~
|
||||
nc_ldap_config_turn_off_cert_check: ~
|
||||
nc_ldap_config_user_displayname: ~
|
||||
nc_ldap_config_user_displayname2: ~
|
||||
nc_ldap_config_user_avatar_rule: ~
|
||||
nc_ldap_config_gid_number: ~
|
||||
nc_ldap_config_user_filter_objectclass: ~
|
||||
nc_ldap_config_user_filter_groups: ~
|
||||
nc_ldap_config_user_filter: ~
|
||||
nc_ldap_config_user_filter_mode: ~
|
||||
nc_ldap_config_attributes_for_user_search: ~
|
||||
nc_ldap_config_group_filter: ~
|
||||
nc_ldap_config_group_filter_mode: ~
|
||||
nc_ldap_config_group_filter_objectclass: ~
|
||||
nc_ldap_config_group_filter_groups: ~
|
||||
nc_ldap_config_group_member_assoc_attr: ~
|
||||
nc_ldap_config_group_displayname: ~
|
||||
nc_ldap_config_attributes_for_group_search: ~
|
||||
nc_ldap_config_login_filter: ~
|
||||
nc_ldap_config_login_filter_mode: ~
|
||||
nc_ldap_config_login_filter_email: ~
|
||||
nc_ldap_config_login_filter_username: ~
|
||||
nc_ldap_config_login_filter_attributes: ~
|
||||
nc_ldap_config_quota_attribute: ~
|
||||
nc_ldap_config_quota_default: ~
|
||||
nc_ldap_config_email_attribute: ~
|
||||
nc_ldap_config_cache_ttl: ~
|
||||
nc_ldap_config_configuration_active: ~
|
||||
nc_ldap_config_experienced_admin: ~
|
||||
nc_ldap_config_home_folder_naming_rule: ~
|
||||
nc_ldap_config_use_memberOf_to_detect_membership: ~
|
||||
nc_ldap_config_expert_username_attr: ~
|
||||
nc_ldap_config_expert_uuid_user_attr: ~
|
||||
nc_ldap_config_expert_uuid_group_attr: ~
|
||||
nc_ldap_config_nested_groups: ~
|
||||
nc_ldap_config_paging_size: ~
|
||||
nc_ldap_config_turn_on_password_change: ~
|
||||
nc_ldap_config_dynamic_group_member_url: ~
|
||||
nc_ldap_config_default_ppolicy_dn: ~
|
||||
|
||||
nc_ldap_meta_http_agent: "ansible-httpget/finallycoffee.nextcloud.ldap-user-backend"
|
||||
|
@ -1,4 +0,0 @@
|
||||
---
|
||||
|
||||
collections:
|
||||
- community.docker
|
@ -11,71 +11,64 @@
|
||||
force: yes
|
||||
when: nc_ldap_api_method == 'http'
|
||||
|
||||
- name: Check if configuration with given config ID already exists (occ)
|
||||
- name: Check if configuration with given config ID already exists
|
||||
docker_container_exec:
|
||||
container: "{{ nc_ldap_container }}"
|
||||
command: "{{ nc_ldap_occ_command }} ldap:show-config --output json {{ '--show-password' if nc_ldap_config_agent_password else '' }} {{ nc_ldap_config_id }}"
|
||||
command: "{{ nc_ldap_occ_command }} ldap:show-config --output json {{ nc_ldap_config_id }}"
|
||||
user: "{{ nc_ldap_occ_user }}"
|
||||
tty: yes
|
||||
when: nc_ldap_api_method == 'occ'
|
||||
changed_when: false
|
||||
check_mode: false
|
||||
register: nc_ldap_existing_config_occ
|
||||
register: nc_ldap_existing_config
|
||||
|
||||
- name: Check if configuration with given config ID already exists (http)
|
||||
- name: Check if configuration with given config ID already exists
|
||||
uri:
|
||||
<<: *api_defaults
|
||||
url: "{{ nc_ldap_api_path }}/{{ nc_ldap_config_id }}{{ query_params }}"
|
||||
method: GET
|
||||
vars:
|
||||
query_params: "?showPassword={{ '1' if nc_ldap_config_agent_password else '0' }}&format={{nc_ldap_api_parameter_format }}"
|
||||
query_params: "?showPassword=1&format={{nc_ldap_api_parameter_format }}"
|
||||
|
||||
when: nc_ldap_api_method == 'http'
|
||||
register: nc_ldap_existing_config_api
|
||||
register: nc_ldap_existing_config
|
||||
|
||||
# TODO: Can we force an ID on POST?
|
||||
- name: Create ldap configuration with id={{ nc_ldap_config_id }} (http)
|
||||
- name: Create ldap configuration with id={{ nc_ldap_config_id }}
|
||||
uri:
|
||||
<<: *api_defaults
|
||||
url: "{{ nc_ldap_api_path }}"
|
||||
method: POST
|
||||
when: nc_ldap_api_method == 'http' and nc_ldap_existing_config_api.status != 200
|
||||
when: nc_ldap_api_method == 'http' and nc_ldap_existing_config.status != 200
|
||||
|
||||
- name: Create ldap configuration with id={{ nc_ldap_config_id }} (occ)
|
||||
- name: Create ldap configuration with id={{ nc_ldap_config_id }}
|
||||
docker_container_exec:
|
||||
container: "{{ nc_ldap_container }}"
|
||||
command: "{{ nc_ldap_occ_command }} ldap:create-empty-config --output json {{ nc_ldap_config_id }}"
|
||||
user: "{{ nc_ldap_occ_user }}"
|
||||
tty: yes
|
||||
when: nc_ldap_api_method == 'occ' and nc_ldap_existing_config_occ.rc != 0 and nc_ldap_config_id not in (nc_ldap_existing_config_occ.stdout | from_json).keys()
|
||||
|
||||
- name: Parse output of query command to dict
|
||||
set_fact:
|
||||
nc_ldap_existing_config: "{{ nc_ldap_existing_config_occ.stdout | from_json }}"
|
||||
changed_when: false
|
||||
# research conditions?
|
||||
when: nc_ldap_api_method == 'occ' and nc_ldap_existing_config.exitCode = 0
|
||||
|
||||
- name: Create changeset
|
||||
set_fact:
|
||||
nc_ldap_config_changeset: "{{ nc_ldap_config_changeset | combine(changed_entry) }}"
|
||||
vars:
|
||||
changed_entry: "{{ { item : nc_ldap_config_keys[item] } }}"
|
||||
loop: "{{ nc_ldap_config_keys.keys() }}"
|
||||
when: nc_ldap_config_keys[item] is defined and nc_ldap_config_keys[item] and nc_ldap_config_keys[item] != nc_ldap_existing_config[nc_ldap_config_id][item]
|
||||
loops: "{{ nc_ldap_config_keys.keys() }}"
|
||||
when: "{{ nc_ldap_config_keys[item] is defined and nc_ldap_config_keys[item] is not None }}"
|
||||
|
||||
- name: Ensure ldap configuration is in sync (http)
|
||||
- name: Ensure ldap configuration is in sync
|
||||
uri:
|
||||
<<: *api_defaults
|
||||
url:
|
||||
method: PUT
|
||||
body:
|
||||
body_format: "form-urlencoded"
|
||||
loop: "{{ nc_ldap_config_changeset | dict2items }}"
|
||||
when: nc_ldap_api_method == 'http'
|
||||
|
||||
- name: Ensure ldap configuration is in sync (occ)
|
||||
- name: Ensure ldap configuration is in sync
|
||||
docker_container_exec:
|
||||
container: "{{ nc_ldap_container }}"
|
||||
command: "{{ nc_ldap_occ_command }} ldap:set-config \"{{ nc_ldap_config_id }}\" \"{{ item.key }}\" \"{{ item.value }}\""
|
||||
command: "{{ nc_ldap_occ_command }} ldap:set-config #args"
|
||||
user: "{{ nc_ldap_occ_user }}"
|
||||
tty: yes
|
||||
loop: "{{ nc_ldap_config_changeset | dict2items }}"
|
||||
when: nc_ldap_api_method == 'occ'
|
||||
|
@ -56,5 +56,3 @@ nc_ldap_config_keys:
|
||||
turnOnPasswordChange: "{{ nc_ldap_config_turn_on_password_change }}"
|
||||
ldapDynamicGroupMemberURL: "{{ nc_ldap_config_dynamic_group_member_url }}"
|
||||
ldapDefaultPPolicyDN: "{{ nc_ldap_config_default_ppolicy_dn }}"
|
||||
|
||||
nc_ldap_config_changeset: {}
|
||||
|
Loading…
Reference in New Issue
Block a user