2023-10-03 19:19:51 +00:00
|
|
|
# vim: ft=yaml.ansible
|
|
|
|
---
|
|
|
|
- name: Configure cron job to remove old Mastodon media daily
|
|
|
|
cron:
|
|
|
|
name: Clean Mastodon media data older than a week
|
|
|
|
cron_file: ansible_mastodon_clean_media
|
2024-02-21 12:36:31 +00:00
|
|
|
job: docker exec mastodon-web-1 tootctl media remove --days 7
|
2023-10-03 19:19:51 +00:00
|
|
|
special_time: daily
|
|
|
|
user: root
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Configure cron job to remove old Mastodon preview cards daily
|
|
|
|
cron:
|
|
|
|
name: Clean Mastodon preview card data older than two weeks
|
|
|
|
cron_file: ansible_mastodon_clean_preview_cards
|
2024-02-21 12:36:31 +00:00
|
|
|
job: docker exec mastodon-web-1 tootctl preview_cards remove --days 14
|
2023-10-03 19:19:51 +00:00
|
|
|
special_time: daily
|
|
|
|
user: root
|
|
|
|
state: present
|