mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-08 22:28:02 +00:00
9 lines
383 B
YAML
9 lines
383 B
YAML
---
|
|
# Cleanup routine for Mastodon
|
|
# Removes cached remote media older than 14 days when MODE_CLEANUP is enabled.
|
|
- name: "Cleanup Mastodon media cache older than 14 days"
|
|
command:
|
|
cmd: "docker exec -u root {{ MASTODON_CONTAINER }} bin/tootctl media remove --days=14"
|
|
register: mastodon_cleanup
|
|
changed_when: mastodon_cleanup.rc == 0
|
|
failed_when: mastodon_cleanup.rc != 0 |