Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

14 wiersze
551 B

  1. - name: Purge all rooms with more then N users
  2. shell: |
  3. curl --header "Authorization: Bearer {{ janitors_token.stdout[1:-1] }}" -X POST -H "Content-Type: application/json" -d '{ "delete_local_events": false, "purge_up_to_ts": {{ purge_epoche_time.stdout }}000 }' "{{ synapse_container_ip.stdout }}:8008/_synapse/admin/v1/purge_history/{{ item[1:-1] }}"
  4. register: purge_command
  5. - name: Print output of purge command
  6. debug:
  7. msg: "{{ purge_command.stdout }}"
  8. - name: Pause for 5 seconds to let Synapse breathe
  9. pause:
  10. seconds: 5