Matrix Docker Ansible eploy
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 

15 рядки
527 B

  1. ---
  2. - name: Purge all rooms with no local users
  3. shell: |
  4. 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'
  5. register: awx_purge_command
  6. - name: Print output of purge command
  7. debug:
  8. msg: "{{ awx_purge_command.stdout }}"
  9. - name: Pause for 5 seconds to let Synapse breathe
  10. pause:
  11. seconds: 5