2019-04-30 13:30:26 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Fail if playbook called incorrectly
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2019-04-30 13:30:26 +00:00
|
|
|
msg: "The `username` variable needs to be provided to this playbook, via --extra-vars"
|
|
|
|
when: "username is not defined or username == '<your-username>'"
|
|
|
|
|
|
|
|
- name: Fail if playbook called incorrectly
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2019-04-30 13:30:26 +00:00
|
|
|
msg: "The `password` variable needs to be provided to this playbook, via --extra-vars"
|
|
|
|
when: "password is not defined or password == '<your-password>'"
|
|
|
|
|
|
|
|
- name: Fail if not using matrix-postgres container
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2019-04-30 13:30:26 +00:00
|
|
|
msg: "This command is working only when matrix-postgres container is being used"
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "not matrix_postgres_enabled | bool"
|
2019-04-30 13:30:26 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-synapse is started
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2019-04-30 13:30:26 +00:00
|
|
|
name: matrix-synapse
|
|
|
|
state: started
|
2022-02-05 20:32:54 +00:00
|
|
|
daemon_reload: true
|
2019-04-30 13:30:26 +00:00
|
|
|
register: start_result
|
|
|
|
|
|
|
|
- name: Ensure matrix-postgres is started
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2019-04-30 13:30:26 +00:00
|
|
|
name: matrix-postgres
|
|
|
|
state: started
|
2022-02-05 20:32:54 +00:00
|
|
|
daemon_reload: true
|
2019-04-30 13:30:26 +00:00
|
|
|
register: postgres_start_result
|
|
|
|
|
|
|
|
|
|
|
|
- name: Wait a while, so that Matrix Synapse can manage to start
|
2022-07-18 08:22:05 +00:00
|
|
|
ansible.builtin.pause:
|
2019-04-30 13:30:26 +00:00
|
|
|
seconds: 7
|
2020-03-28 12:00:56 +00:00
|
|
|
when: "start_result.changed or postgres_start_result.changed"
|
2019-04-30 13:30:26 +00:00
|
|
|
|
|
|
|
- name: Generate password hash
|
2022-11-04 14:39:35 +00:00
|
|
|
ansible.builtin.shell: "{{ devture_systemd_docker_base_host_command_docker }} exec matrix-synapse /usr/local/bin/hash_password -c /data/homeserver.yaml -p {{ password | quote }}"
|
2019-04-30 13:30:26 +00:00
|
|
|
register: password_hash
|
2022-07-18 09:28:39 +00:00
|
|
|
changed_when: false
|
2019-04-30 13:30:26 +00:00
|
|
|
|
|
|
|
- name: Update user password hash
|
2022-09-18 09:21:09 +00:00
|
|
|
ansible.builtin.command: "{{ matrix_local_bin_path }}/matrix-postgres-update-user-password-hash {{ username | quote }} {{ password_hash.stdout | quote }}"
|
2022-07-18 09:28:39 +00:00
|
|
|
register: matrix_synapse_update_user_password_result
|
|
|
|
changed_when: matrix_synapse_update_user_password_result.rc == 0
|