ansible-role-chill/templates/logrotate/chill
Julien Fastré 3124330752
Fix typo in logrotate file path for privacy logs
Corrected the logrotate configuration to use the proper file path `/var/log/apt/privacy-*.log` instead of the incorrect `/var/log/apt/private-*.log`. This ensures the rotation settings apply to the intended log files.
2025-01-13 12:14:58 +01:00

17 lines
219 B
Plaintext

/var/log/chill/default-*.log {
su php-fpm php-fpm
rotate 90
daily
compress
missingok
notifempty
}
/var/log/apt/privacy-*.log {
su php-fpm php-fpm
rotate 180
daily
compress
missingok
notifempty
}