matrix-docker-ansible-deploy/roles/matrix-awx/tasks/purge_media_local.yml
2021-04-15 17:07:03 +08:00

14 lines
444 B
YAML

- name: Collect epoche time from date
shell: |
date -d '{{ item }}' +"%s"
register: epoche_time
- name: Purge local media to specific date
shell: |
curl -X POST --header "Authorization: Bearer {{ janitors_token.stdout }}" 'https://matrix.{{ matrix_domain }}/_synapse/admin/v1/media/matrix.{{ matrix_domain }}/delete?before_ts={{ epoche_time.stdout }}'
- name: Pause for 5 seconds to let Synapse breathe
pause:
seconds: 5