The following changes are only related with the Docker image.
Please refer to the Salt 3007.13 Release Notes for the full list of changes.
What's Changed
- Resolve matrioska effect with
logrotate.
See #368 for all the details.
Full changelog: 3007.13...3007.13_1
Images
docker pull ghcr.io/cdalvaro/docker-salt-master:3007.13_1
docker pull ghcr.io/cdalvaro/docker-salt-master:3007.13_1-gui
Clean up
Useful commands to clean up the mess...
# List the entire mess.
find ${SALT_LOGS_DIR?} -name '*.gz.*.gz*' -ls
# Clean up the empty rotated files.
find ${SALT_LOGS_DIR?} -name '*.gz.*.gz*' -size 0 -delete
# Dubious files.
find ${SALT_LOGS_DIR?} -name '*.gz.*.gz*' -size +0 -ls