GMH v0.4.2 update

This commit is contained in:
Michael-GMH
2021-04-15 17:07:03 +08:00
parent f41bfb69d2
commit 89cb5a3d7a
59 changed files with 601 additions and 99 deletions

View File

@ -0,0 +1,13 @@
- 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/purge_media_cache?before_ts={{ epoche_time.stdout }}'
- name: Pause for 5 seconds to let Synapse breathe
pause:
seconds: 5