2022-11-01 14:22:58 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Validate Matrix users to create
|
|
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/util/validate_user.yml"
|
|
|
|
with_items: "{{ matrix_user_creator_users }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: user
|
|
|
|
# Suppress logging to avoid dumping the credentials to the shell
|
|
|
|
no_log: true
|
|
|
|
|
|
|
|
- name: Ensure homeserver is started before creating Matrix users
|
|
|
|
ansible.builtin.service:
|
|
|
|
name: "matrix-{{ matrix_homeserver_implementation }}.service"
|
|
|
|
state: started
|
|
|
|
daemon_reload: true
|
|
|
|
register: matrix_user_registrator_homeserver_start_result
|
|
|
|
|
|
|
|
- name: Wait a while, so that the homeserver can manage to start before creating Matrix users
|
|
|
|
ansible.builtin.pause:
|
2023-02-23 06:26:35 +00:00
|
|
|
seconds: "{{ matrix_user_creator_homeserver_start_wait_time_seconds }}"
|
2022-11-01 14:22:58 +00:00
|
|
|
when: matrix_user_registrator_homeserver_start_result.changed | bool
|
|
|
|
|
|
|
|
- name: Ensure Matrix users are created
|
|
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/util/ensure_user_registered_{{ matrix_homeserver_implementation }}.yml"
|
|
|
|
with_items: "{{ matrix_user_creator_users }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: user
|
|
|
|
# Suppress logging to avoid dumping the credentials to the shell
|
|
|
|
no_log: true
|