Matrix Docker Ansible eploy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: Purge all rooms with no local users
- shell: |
- 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'
- register: awx_purge_command
-
- - name: Print output of purge command
- debug:
- msg: "{{ awx_purge_command.stdout }}"
-
- - name: Pause for 5 seconds to let Synapse breathe
- pause:
- seconds: 5
|