matrix-docker-ansible-deploy/roles/matrix-awx/tasks/purge_database_no_local.yml

15 lines
527 B
YAML
Raw Normal View History

2021-10-10 05:23:49 +00:00
---
2021-08-13 08:05:57 +00:00
- name: Purge all rooms with no local users
shell: |
2021-11-15 20:43:05 +00:00
curl --header "Authorization: Bearer {{ awx_janitors_token.stdout[1:-1] }}" -X POST -H "Content-Type: application/json" -d '{ "room_id": {{ item }} }' '{{ awx_synapse_container_ip.stdout }}:{{ matrix_synapse_container_client_api_port }}/_synapse/admin/v1/purge_room'
2021-10-10 05:23:49 +00:00
register: awx_purge_command
2021-11-15 20:43:05 +00:00
2021-08-13 08:05:57 +00:00
- name: Print output of purge command
2021-11-15 20:43:05 +00:00
debug:
2021-10-10 05:23:49 +00:00
msg: "{{ awx_purge_command.stdout }}"
2021-08-13 08:05:57 +00:00
- name: Pause for 5 seconds to let Synapse breathe
pause:
seconds: 5