65e863b0a9
Make the logrotate script setuid/setgid to the redis user/group, to silence logrotate warnings in the logs. OBS-URL: https://build.opensuse.org/request/show/180755 OBS-URL: https://build.opensuse.org/package/show/server:database/redis?expand=0&rev=39
11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
/var/log/redis/*.log {
|
|
weekly
|
|
rotate 10
|
|
copytruncate
|
|
delaycompress
|
|
compress
|
|
notifempty
|
|
missingok
|
|
su redis redis
|
|
}
|