Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

20 satır
639 B

  1. ---
  2. - name: Collect epoche time from date
  3. shell: |
  4. date -d '{{ item }}' +"%s"
  5. register: awx_epoche_time
  6. - name: Purge local media to specific date
  7. shell: |
  8. curl -X POST --header "Authorization: Bearer {{ awx_janitors_token.stdout[1:-1] }}" '{{ awx_synapse_container_ip.stdout }}:{{ matrix_synapse_container_client_api_port }}/_synapse/admin/v1/media/matrix.{{ matrix_domain }}/delete?before_ts={{ awx_epoche_time.stdout }}000'
  9. register: awx_purge_command
  10. - name: Print output of purge command
  11. debug:
  12. msg: "{{ awx_purge_command.stdout }}"
  13. - name: Pause for 5 seconds to let Synapse breathe
  14. pause:
  15. seconds: 5