[sys-cluster/glusterfs] try py3k13

This commit is contained in:
2025-04-06 20:56:13 +02:00
parent 2c704daf1d
commit 1db773241a
10 changed files with 551 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
# Rotate client logs
/var/log/glusterfs/*.log {
weekly
rotate 52
missingok
# compress the logs, but from the .2 onwards
compress
delaycompress
notifempty
sharedscripts
postrotate
/usr/bin/killall -HUP glusterfs > /dev/null 2>&1 || true
/usr/bin/killall -HUP glusterd > /dev/null 2>&1 || true
endscript
}
# Rotate server logs
/var/log/glusterfs/bricks/*.log {
weekly
rotate 52
missingok
# compress the logs, but from the .2 onwards
compress
delaycompress
notifempty
sharedscripts
postrotate
/usr/bin/killall -HUP glusterfsd > /dev/null 2>&1 || true
endscript
}